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 {
background-color: rgba(240 71 71 / 15%);
background-color: rgba(240 71 71 / 15%) !important;
}

View File

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

View File

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