From 2077538db838fab737f10a10f54e3b674e716ceb Mon Sep 17 00:00:00 2001 From: Pierre HUBERT Date: Mon, 5 Apr 2021 16:11:30 +0200 Subject: [PATCH] Fix dark theme on group conversations --- assets/css/dark_theme.css | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/assets/css/dark_theme.css b/assets/css/dark_theme.css index 3113a504..9c26ce89 100644 --- a/assets/css/dark_theme.css +++ b/assets/css/dark_theme.css @@ -569,37 +569,39 @@ div.sceditor-dropdown input { /** * Conversation page */ -.conversations-page-container a { +.big-box-conversation a { background-color: var(--black6) !important;; } -.conversations-page-container a { +.big-box-conversation a { color: var(--white) !important; } -.conversations-page-container a:hover { +.big-box-conversation a:hover { background-color: var(--black5) !important;; } -.conversations-page-container a:active { +.big-box-conversation a:active { background-color: var(--black6) !important;; } -.conversations-page-container a.selected { +.big-box-conversation a.selected { background-color: var(--black5) !important;; } -.conversations-page-container .box-conversation .input-group-btn .btn { + + +.big-box-conversation .input-group-btn .btn { background-color: var(--black5); } -.conversations-page-container .box-conversation .input-group-btn .btn:hover { +.big-box-conversation .input-group-btn .btn:hover { background-color: var(--black4); color: var(--black6); } -.conversations-page-container .box-conversation .input-group-btn .btn:focus, -.conversations-page-container .box-conversation .input-group-btn .btn:active { +.big-box-conversation .input-group-btn .btn:focus, +.big-box-conversation .input-group-btn .btn:active { color: var(--white); }