From da8472b6385d05b1598d1fb6f3e8c20620a7b4bf Mon Sep 17 00:00:00 2001 From: lilia Date: Tue, 19 Jan 2016 20:15:12 -0800 Subject: [PATCH] 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 --- stylesheets/_conversation.scss | 1 + stylesheets/manifest.css | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/stylesheets/_conversation.scss b/stylesheets/_conversation.scss index 87c73faf..475c5354 100644 --- a/stylesheets/_conversation.scss +++ b/stylesheets/_conversation.scss @@ -560,6 +560,7 @@ z-index: 5; resize: none; font-size: 1em; + font-family: inherit; } } diff --git a/stylesheets/manifest.css b/stylesheets/manifest.css index 0c89b8eb..d88c31cf 100644 --- a/stylesheets/manifest.css +++ b/stylesheets/manifest.css @@ -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;