make font consistent and define it only once

This commit is contained in:
tophf 2018-08-15 10:01:09 +03:00
parent ec0b1373fe
commit 1ac858bd38

View File

@ -9,12 +9,19 @@
body { body {
margin: 0; margin: 0;
font: 12px arial, sans-serif;
/* Firefox: fill the entire page for drag'n'drop to work */ /* Firefox: fill the entire page for drag'n'drop to work */
display: flex; display: flex;
height: 100%; height: 100%;
} }
body,
select,
.firefox select,
#search,
#manage\.newUI\.sort {
font: normal 12px Arial, sans-serif;
}
body.all-styles-hidden-by-filters:before, body.all-styles-hidden-by-filters:before,
body.all-styles-hidden-by-filters:after { body.all-styles-hidden-by-filters:after {
position: absolute; position: absolute;
@ -45,10 +52,6 @@ a:hover {
color: #666; color: #666;
} }
select {
font-size: 12px;
}
#header { #header {
width: var(--header-width); width: var(--header-width);
height: 100vh; height: 100vh;
@ -935,7 +938,6 @@ input[id^="manage.newUI"] {
height: 20px; height: 20px;
box-sizing: border-box; box-sizing: border-box;
padding: 3px 3px 3px 4px; padding: 3px 3px 3px 4px;
font: 400 12px Arial;
color: #000; color: #000;
border: 1px solid hsl(0, 0%, 66%); border: 1px solid hsl(0, 0%, 66%);
} }