Use inherited font-family on the message input

Chrome's UA stylesheet defaults font-family to monospace on textareas.

The only other textarea at the moment is the debug log, where monospace
is actually nice to have since it's more scannable.

// FREEBIE
This commit is contained in:
lilia 2016-01-19 20:15:12 -08:00
parent be9bf706b3
commit da8472b638
2 changed files with 3 additions and 1 deletions

View file

@ -560,6 +560,7 @@
z-index: 5;
resize: none;
font-size: 1em;
font-family: inherit;
}
}

View file

@ -994,7 +994,8 @@ input.search {
outline: 0;
z-index: 5;
resize: none;
font-size: 1em; }
font-size: 1em;
font-family: inherit; }
.toast {
position: absolute;