From 17115fa74d129d36ac709b941f32c37753a3c385 Mon Sep 17 00:00:00 2001 From: Pavel Djundik Date: Wed, 16 Jan 2019 13:27:31 +0200 Subject: [PATCH] Fix highlight styles not applying to notices and actions --- client/css/style.css | 12 ++++++------ client/themes/morning.css | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/client/css/style.css b/client/css/style.css index 2be023bd..c38a465e 100644 --- a/client/css/style.css +++ b/client/css/style.css @@ -1375,22 +1375,22 @@ background on hover (unless active) */ color: #e74c3c; } -#chat .channel .message.highlight { +#chat .channel .msg.highlight { background-color: var(--highlight-bg-color); border-left: 5px solid var(--highlight-border-color); } -#chat .channel .message.highlight .time { +#chat .channel .msg.highlight .time { padding-left: 5px; width: 50px; color: #696969; } -#chat.show-seconds .channel .message.highlight .time { +#chat.show-seconds .channel .msg.highlight .time { width: 70px; } -#chat .channel .message.highlight .content { +#chat .channel .msg.highlight .content { border-left: 1px solid var(--highlight-bg-color); } @@ -2488,11 +2488,11 @@ part/quit messages where we don't load previews (adds a blank line otherwise) */ padding: 0; } - #chat .channel .message.highlight { + #chat .channel .msg.highlight { padding-left: 5px; } - #chat .channel .message.highlight .time { + #chat .channel .msg.highlight .time { padding-left: 0; } diff --git a/client/themes/morning.css b/client/themes/morning.css index d3887611..a35ec292 100644 --- a/client/themes/morning.css +++ b/client/themes/morning.css @@ -11,7 +11,7 @@ --highlight-border-color: #b08c4f; } -#chat .channel .message.highlight .time { +#chat .channel .msg.highlight .time { color: white; }