MessageLogger: Apply styles to gifs, stickers & new markdown

This commit is contained in:
Vendicated 2023-04-17 01:16:00 +02:00
parent 1caaa78490
commit ce64631310
No known key found for this signature in database
GPG key ID: A1DC0CFB5615D905
3 changed files with 9 additions and 7 deletions

View file

@ -1,3 +1,3 @@
.messagelogger-deleted { .messagelogger-deleted {
background-color: rgba(240 71 71 / 15%); background-color: rgba(240 71 71 / 15%) !important;
} }

View file

@ -1,8 +1,8 @@
.messagelogger-deleted div { .messagelogger-deleted :is(div, h1, h2, h3, p) {
color: #f04747; color: #f04747 !important;
} }
.messagelogger-deleted a { .messagelogger-deleted a {
color: #be3535; color: #be3535 !important;
text-decoration: underline; text-decoration: underline;
} }

View file

@ -2,15 +2,17 @@
display: none; display: none;
} }
.messagelogger-deleted :is(video),
.messagelogger-deleted-attachment, .messagelogger-deleted-attachment,
.messagelogger-deleted div iframe { .messagelogger-deleted div iframe {
filter: grayscale(1); filter: grayscale(1) !important;
transition: 150ms filter ease-in-out; transition: 150ms filter ease-in-out;
} }
.messagelogger-deleted:hover :is(video),
.messagelogger-deleted-attachment:hover, .messagelogger-deleted-attachment:hover,
.messagelogger-deleted div iframe:hover { .messagelogger-deleted iframe:hover {
filter: grayscale(0); filter: grayscale(0) !important;
} }
.theme-dark .messagelogger-edited { .theme-dark .messagelogger-edited {