From 40250563e3644a7f5ca916aa032328649256b384 Mon Sep 17 00:00:00 2001 From: William Rankin Date: Sun, 28 Jun 2020 17:21:27 +1000 Subject: [PATCH] Specify 13px font-size for .html-editor > textarea (#7447) This is a followup to PR #7375 which set the plaintext message area from 14px to 13px for greater consistency with Classic and Larry skins. With that PR I neglected to consider the font size in the compose screen, which should probably match the 13px of the message area, but currently inherits 14px from the html element which causes an odd jump in font size when replying to a message. Reference #7375 --- skins/elastic/styles/widgets/editor.less | 1 + 1 file changed, 1 insertion(+) diff --git a/skins/elastic/styles/widgets/editor.less b/skins/elastic/styles/widgets/editor.less index f29af29fb..74c2a10ff 100644 --- a/skins/elastic/styles/widgets/editor.less +++ b/skins/elastic/styles/widgets/editor.less @@ -897,6 +897,7 @@ html.touch .mce-grid td { & > .googie_edit_layer, & > textarea { font-family: monospace; + font-size: 13px; width: 100% !important; padding-top: 2.5rem; resize: none;