Fix avatar menu icons in darkmode

Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2022-10-13 10:11:09 +02:00
parent 1dce303666
commit de6c6829bc
No known key found for this signature in database
GPG key ID: 74434EFE0D2E2205
5 changed files with 19 additions and 2 deletions

View file

@ -958,6 +958,11 @@ kbd {
border: 1px solid var(--color-border);
}
.contact .popovermenu ul > li > a > img,
.popover__menu > li > a > img {
filter: var(--background-invert-if-dark);
}
.bubble,
.app-navigation-entry-menu,
.popovermenu {

File diff suppressed because one or more lines are too long

View file

@ -980,6 +980,13 @@ $outter-margin: math.div($popoveritem-height - $popovericon-size, 2);
}
}
.contact .popovermenu ul,
.popover__menu {
> li > a > img {
filter: var(--background-invert-if-dark);
}
}
.bubble,
.app-navigation-entry-menu,
.popovermenu {

View file

@ -3736,6 +3736,11 @@ kbd {
border: 1px solid var(--color-border);
}
.contact .popovermenu ul > li > a > img,
.popover__menu > li > a > img {
filter: var(--background-invert-if-dark);
}
.bubble,
.app-navigation-entry-menu,
.popovermenu {

File diff suppressed because one or more lines are too long