From 565e37e873b73a10aa652c96efd731fa202f051a Mon Sep 17 00:00:00 2001 From: Max Leiter Date: Wed, 28 Sep 2016 11:46:00 -0700 Subject: [PATCH] Fix unhandled message color in Crypto theme --- client/css/style.css | 4 ---- client/themes/crypto.css | 4 ++++ client/themes/example.css | 4 ++++ 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/client/css/style.css b/client/css/style.css index 801a2ae6..73fae1e0 100644 --- a/client/css/style.css +++ b/client/css/style.css @@ -949,10 +949,6 @@ button { color: #f00; } -#chat .unhandled .from { - color: #eee; -} - #chat .msg.toggle .time { visibility: hidden; } diff --git a/client/themes/crypto.css b/client/themes/crypto.css index 61a7c31d..50b01388 100644 --- a/client/themes/crypto.css +++ b/client/themes/crypto.css @@ -85,6 +85,10 @@ a:hover, color: #666; } +#chat .unhandled .from { + color: #ddd; +} + #sidebar .active { color: #fff; } diff --git a/client/themes/example.css b/client/themes/example.css index d85df9fa..f59944fe 100644 --- a/client/themes/example.css +++ b/client/themes/example.css @@ -27,6 +27,10 @@ body { top: 4px; } +#chat .unhandled .from { + color: #ddd; +} + #windows .window:before { background: #f4f4f4; background-image: linear-gradient(#f4f4f4, #ececec);