mirror of
https://github.com/Vendicated/Vencord.git
synced 2025-01-11 10:26:21 +00:00
19 lines
559 B
CSS
19 lines
559 B
CSS
/* Message content highlighting */
|
|
.messagelogger-deleted [class*="contents"] > :is(div, h1, h2, h3, p) {
|
|
color: var(--status-danger, #f04747) !important;
|
|
}
|
|
|
|
/* Bot "thinking" text highlighting */
|
|
.messagelogger-deleted [class*="colorStandard"] {
|
|
color: var(--status-danger, #f04747) !important;
|
|
}
|
|
|
|
/* Embed highlighting */
|
|
.messagelogger-deleted article :is(div, span, h1, h2, h3, p) {
|
|
color: var(--status-danger, #f04747) !important;
|
|
}
|
|
|
|
.messagelogger-deleted a {
|
|
color: var(--red-460, #be3535) !important;
|
|
text-decoration: underline;
|
|
}
|