Reorganize <input> styling

This applies the general border, font and colour settings to all types of <input> instead of an arbitrary list
Positional properties are kept as-is.
indiachan-spamvector
disco 1 year ago
parent a0ef745a73
commit 378b506fc6
  1. 9
      gulp/res/css/style.css

@ -1185,15 +1185,18 @@ input[type="button"][disabled] {
opacity: 0.5;
}
input[type="button"], input[type="range"], input[type="number"], input[type="text"], input[type="submit"], input[type="password"], input[type="file"], textarea, select {
input, textarea, select {
border: 1px solid var(--input-borders);
border-radius: 0px;
background: var(--input-background);
color: var(--input-color);
font-size: inherit;
font-family: arial, helvetica, sans-serif;
font-size: inherit;
}
input[type="button"], input[type="range"], input[type="number"], input[type="text"], input[type="submit"], input[type="password"], input[type="file"], textarea, select {
margin: 0;
flex-grow: 1;
border-radius: 0px;
}
.nogrow * {

Loading…
Cancel
Save