Changing the font from18px to 16px. This seems to be more readable and cleaner. Should give a bit more room to show things like dates.

pull/843/merge
Jordan Wright 2017-09-05 21:12:43 -05:00
parent e5893c7748
commit 28b802254b
3 changed files with 12 additions and 9 deletions

File diff suppressed because one or more lines are too long

View File

@ -158,7 +158,7 @@ you can use the generic selector below, but it's slower:
} }
body { body {
font-family: "Source Sans Pro", Helvetica, Arial, sans-serif; font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
font-size: 18px; font-size: 16px;
line-height: 1.72222; line-height: 1.72222;
color: #283F50; color: #283F50;
background-color: #ffffff; background-color: #ffffff;
@ -276,7 +276,7 @@ h6,
font-size: 24px; font-size: 24px;
} }
p { p {
font-size: 18px; font-size: 16px;
line-height: 1.72222; line-height: 1.72222;
margin: 0 0 15px; margin: 0 0 15px;
} }
@ -404,7 +404,7 @@ blockquote p {
} }
blockquote small, blockquote small,
blockquote .small { blockquote .small {
font-size: 18px; font-size: 16px;
line-height: 1.72222; line-height: 1.72222;
font-style: italic; font-style: italic;
color: inherit; color: inherit;
@ -1007,7 +1007,7 @@ fieldset[disabled] .btn-link:focus {
right: 20px; right: 20px;
} }
.select .btn.btn-lg .filter-option { .select .btn.btn-lg .filter-option {
left: 18px; left: 16px;
right: 38px; right: 38px;
} }
.select .btn.btn-sm .filter-option { .select .btn.btn-sm .filter-option {
@ -1379,7 +1379,7 @@ select[multiple].input-hg {
padding: 0 15px 0 0; padding: 0 15px 0 0;
} }
.input-sm + .input-icon { .input-sm + .input-icon {
font-size: 18px; font-size: 16px;
line-height: 30px; line-height: 30px;
padding: 0 10px 0 0; padding: 0 10px 0 0;
} }

6
static/css/main.css vendored
View File

@ -174,7 +174,7 @@
.tt-hint { .tt-hint {
color: #999 color: #999
} }
.tt-menu { // used to be tt-dropdown-menu in older versions .tt-menu {
width: 422px; width: 422px;
margin-top: 4px; margin-top: 4px;
padding: 4px 0; padding: 4px 0;
@ -543,6 +543,7 @@ table.dataTable{
} }
.highcharts-title { .highcharts-title {
font-family: "Source Sans Pro",Helvetica,Arial,sans-serif; font-family: "Source Sans Pro",Helvetica,Arial,sans-serif;
font-size: 16px !important;
} }
.color-success { .color-success {
font-weight: bold; font-weight: bold;
@ -563,3 +564,6 @@ table.dataTable{
.color-success { .color-success {
color: #f05b4f; color: #f05b4f;
} }
.nav>li.active>a:focus, .nav>li.active>a:hover {
background-color: #37485a;
}