Merge pull request #34571 from nextcloud/bugfix/noid/fix-popovermenu-selector

Fix avatar menu icons in darkmode
This commit is contained in:
Joas Schilling 2022-10-13 11:09:01 +02:00 committed by GitHub
commit f6efd54242
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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