From 5ab44cbf316abcb8c38a55b42dcd93a50454c2e7 Mon Sep 17 00:00:00 2001 From: Paul Friederichsen Date: Sat, 3 Oct 2015 20:37:39 -0500 Subject: [PATCH] Fix Morning and Zenburn themes on mobile --- client/themes/morning.css | 7 +++++++ client/themes/zenburn.css | 11 +++++++++++ 2 files changed, 18 insertions(+) diff --git a/client/themes/morning.css b/client/themes/morning.css index a5ee67f3..555eacce 100644 --- a/client/themes/morning.css +++ b/client/themes/morning.css @@ -195,3 +195,10 @@ QUIT #d0907d #chat .toggle-content .body { color: #99a2b4; } + +@media (max-width: 768px) { + #footer { + left: -220px; + width: 225px; + } +} diff --git a/client/themes/zenburn.css b/client/themes/zenburn.css index 2f763c38..f6fca30a 100644 --- a/client/themes/zenburn.css +++ b/client/themes/zenburn.css @@ -18,6 +18,10 @@ BORDERS #333333 QUIT #bc6c4c */ +body { + background: #2b2b2b; +} + #windows .chan, #windows .window { background: #3f3f3f; } @@ -206,3 +210,10 @@ QUIT #bc6c4c #chat .toggle-content .body { color: #d2d39b; } + +@media (max-width: 768px) { + #footer { + left: -220px; + width: 225px; + } +}