diff options
Diffstat (limited to 'css')
-rw-r--r-- | css/style.css | 25 |
1 files changed, 22 insertions, 3 deletions
diff --git a/css/style.css b/css/style.css index b48451f..1c34440 100644 --- a/css/style.css +++ b/css/style.css @@ -68,6 +68,11 @@ separator { background-size: 0px; } +treeview { + background-color: #36393e; + color: #f7f7f7; +} + .separator-horizontal-margin { margin-top: 10px; margin-bottom: 10px; @@ -91,7 +96,12 @@ separator { border: 1px solid black; } -#side-panels separator { +.side-panels { + border: none; + outline: none; +} + +.side-panels separator { border: 1px solid #2f3136; background-color: #2f3136; } @@ -123,14 +133,15 @@ separator { font-weight: bold; } -#left-panel { +.left-panel { background-color: #36393e; padding: 10px 10px 10px 10px; border: 1px solid #36393e; } -#left-panel separator { +.left-panel separator { border: 1px solid #36393e; + border-top: 3px solid #444444; background-color: #36393e; } @@ -233,6 +244,14 @@ textview text { font-size: 14px; } +.chat-input-focused text { + color: #f7f7f7; +} + +.chat-input-unfocused text { + color: #a7a7a7; +} + .window-notification { background-color: #aa3030; } |