Update deleteStyleText.css

Mentions don't have the deleted color tint added to it, making it hard to tell if messages have been deleted if the content only consists of a mention only.
This commit is contained in:
ColynOrg 2024-07-15 02:22:42 -04:00 committed by GitHub
parent 5bd10c8608
commit 2777384dad
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,5 +1,6 @@
/* Message content highlighting */
.messagelogger-deleted [class*="contents"] > :is(div, h1, h2, h3, p) {
/* Message content and mention highlighting */
.messagelogger-deleted [class*="contents"] > :is(div, h1, h2, h3, p),
.messagelogger-deleted .mention {
color: var(--status-danger, #f04747) !important;
}