css: don't use monospace font for textareas.

This changes the font in text input boxes (including the tag edit box)
from monospace to Verdana.
This commit is contained in:
evazion
2020-08-16 15:17:40 -05:00
parent 44cbce9855
commit d072ef98ba
3 changed files with 5 additions and 5 deletions

View File

@@ -56,6 +56,11 @@ input, select, textarea {
border: var(--form-input-border);
color: var(--form-input-text-color);
padding-left: 0.25em;
font: var(--body-font);
}
textarea {
font-size: var(--text-sm);
}
input[type="button"], input[type="submit"], button {