fix: do not highlight new member leaf in red in message logger (#1071)

Co-authored-by: V <vendicated@riseup.net>
This commit is contained in:
Axu 2023-06-09 22:17:44 +02:00 committed by GitHub
parent 3410ed024f
commit 683c92f904
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 26 additions and 7 deletions

View file

@ -1,4 +1,10 @@
.messagelogger-deleted :is(div, h1, h2, h3, p) {
/* Message content highlighting */
.messagelogger-deleted [class*="contents-"] > :is(div, h1, h2, h3, p) {
color: #f04747 !important;
}
/* Embed highlighting */
.messagelogger-deleted article :is(div, span, h1, h2, h3, p) {
color: #f04747 !important;
}