Separated font-family specification for input and textarea

This avoids the requirement to use !important in custom CSS.
This commit is contained in:
Vedran Miletić 2023-02-19 13:25:35 +01:00 committed by Frédéric Guillot
parent 714ea7dfe8
commit 87432a4f34
2 changed files with 5 additions and 3 deletions

File diff suppressed because one or more lines are too long

View File

@ -15,6 +15,10 @@ label {
font-weight: 400
}
input, textarea {
font-family: sans-serif;
}
input[type="number"],
input[type="date"],
input[type="email"],
@ -28,7 +32,6 @@ input[type="text"]:not(.input-addon-field) {
height: 25px;
padding-bottom: 0;
padding-left: 4px;
font-family: sans-serif;
-webkit-appearance: none;
-moz-appearance: none
}
@ -102,7 +105,6 @@ textarea {
width: 400px;
max-width: 99%;
height: 200px;
font-family: sans-serif;
font-size: 1em
}