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:
parent
be9bf706b3
commit
da8472b638
2 changed files with 3 additions and 1 deletions
|
@ -560,6 +560,7 @@
|
||||||
z-index: 5;
|
z-index: 5;
|
||||||
resize: none;
|
resize: none;
|
||||||
font-size: 1em;
|
font-size: 1em;
|
||||||
|
font-family: inherit;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -994,7 +994,8 @@ input.search {
|
||||||
outline: 0;
|
outline: 0;
|
||||||
z-index: 5;
|
z-index: 5;
|
||||||
resize: none;
|
resize: none;
|
||||||
font-size: 1em; }
|
font-size: 1em;
|
||||||
|
font-family: inherit; }
|
||||||
|
|
||||||
.toast {
|
.toast {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
|
|
Loading…
Reference in a new issue