Fix user status icon in avatar menu

Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2023-01-04 10:18:24 +01:00
parent ce50acd9b2
commit a4fec95e57
No known key found for this signature in database
GPG Key ID: 74434EFE0D2E2205
5 changed files with 7 additions and 1 deletions

Binary file not shown.

Binary file not shown.

View File

@ -973,7 +973,13 @@ $outter-margin: math.div($popoveritem-height - $popovericon-size, 2);
.contact .popovermenu ul,
.popover__menu {
> li > a > img {
filter: var(--background-invert-if-dark);
filter: var(--background-invert-if-dark);
// We do not want to invert the color of the user_status emoji:
// https://github.com/nextcloud/nextcloud-vue/blob/8899087f8f8d45e0ed744bde9faa00b625a21905/src/components/NcAvatar/NcAvatar.vue#L495
&[src^="data"] {
filter: none;
}
}
}

Binary file not shown.

Binary file not shown.