From 0ca063c167d8f3165444a11d2083eeabb28ce05d Mon Sep 17 00:00:00 2001 From: Pavel Djundik Date: Sat, 3 Mar 2018 10:24:44 +0200 Subject: [PATCH] Fixes for master updates - Fix sidebar being visible while loading - Use dark variant of lounge logo - Remove transition on context menu hovers - Change context menu hover color - Fix hover color in user list --- theme.css | 34 ++++++++++++++++++++++++++-------- 1 file changed, 26 insertions(+), 8 deletions(-) diff --git a/theme.css b/theme.css index 2d463da..5063772 100644 --- a/theme.css +++ b/theme.css @@ -22,6 +22,14 @@ color: rgba(131, 148, 150, 0.9); } +.loading-logo-bright { + display: none; +} + +.loading-logo-dark { + display: inline-block; +} + i.hostmask { font-size: 90%; opacity: 0.7; @@ -47,11 +55,13 @@ kbd { border: 0; } -.context-menu-item:hover, -.textcomplete-item:hover, -.textcomplete-menu .active, -.textcomplete-menu .active a, +.context-menu-item, +.textcomplete-item { + transition: none; +} + #chat .sidebar, +#windows .window, body { background-color: #051114; color: #fff; @@ -112,8 +122,7 @@ body { #input, #windows #form .input, #form, -#chat .count, -#windows .window { +#chat .count { background-color: inherit; } @@ -156,17 +165,26 @@ body { } #sidebar { - background-color: #002b36; width: 200px; bottom: 43px; } #footer { - background-color: #002b36; width: 200px; height: 43px; } +.context-menu-item:hover, +.textcomplete-item:hover, +.textcomplete-menu .active, +.textcomplete-menu .active a, +#chat .users .user.active, +#sidebar, +#footer { + color: #fff; + background-color: #002b36; +} + #main { left: 200px; }