jquery-ui: fix fonts in dialog boxes (#3671).

Fix the default jquery-ui theme overriding our body font with Arial.
This commit is contained in:
evazion
2018-04-26 23:13:21 -05:00
parent 36b819fdf8
commit a11dbb9186
3 changed files with 10 additions and 1 deletions

View File

@@ -19,6 +19,7 @@ $h3_padding: 0.8em 0 0.25em 0;
$h4_padding: 0.8em 0 0.25em 0;
$baseline: 1em;
$basefont: 100%;
$base_font_family: Verdana, Helvetica, sans-serif;
$preview_has_children_color: #0F0;
$preview_has_parent_color: #CC0;
$preview_deleted_color: #000;

View File

@@ -2,7 +2,7 @@
body {
background-color: #FFF;
font-family: Verdana, Helvetica, sans-serif;
font-family: $base_font_family;
padding: 0;
margin: 0;
font-size: 87.5%;

View File

@@ -1,3 +1,11 @@
.ui-widget {
font-family: $base_font_family;
input, select, textarea, button {
font-family: $base_font_family;
}
}
div.ui-dialog {
height: auto! important;
overflow: visible;