Fix highlight styles not applying to notices and actions

This commit is contained in:
Pavel Djundik 2019-01-16 13:27:31 +02:00
parent 589e846b73
commit 17115fa74d
2 changed files with 7 additions and 7 deletions

View file

@ -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;
}

View file

@ -11,7 +11,7 @@
--highlight-border-color: #b08c4f;
}
#chat .channel .message.highlight .time {
#chat .channel .msg.highlight .time {
color: white;
}