From 60e3abddcb8b6548a0ee16a56c2ff392e7a3f3be Mon Sep 17 00:00:00 2001 From: Brock Whittaker Date: Tue, 3 Oct 2017 12:11:37 -0700 Subject: [PATCH] media.css: Make compose box not collapse to two lines. This makes the compose box not collapse to two lines by making input fields smaller. Fixes: #6366. --- static/styles/media.css | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/static/styles/media.css b/static/styles/media.css index 18b14d947c..5fa81b067d 100644 --- a/static/styles/media.css +++ b/static/styles/media.css @@ -332,6 +332,18 @@ } } +@media (max-width: 370px) { + #subject.recipient_box { + width: calc(100% - 175px); + min-width: 95px; + } + + .compose-content { + margin-right: 5px; + margin-left: 5px; + } +} + @media (max-width: 350px) { html { overflow-x: hidden;