Skip to content

Commit a4fec95

Browse files
committed
Fix user status icon in avatar menu
Signed-off-by: Joas Schilling <coding@schilljs.com>
1 parent ce50acd commit a4fec95

5 files changed

Lines changed: 17 additions & 3 deletions

File tree

core/css/apps.css

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

core/css/apps.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

core/css/apps.scss

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -973,7 +973,13 @@ $outter-margin: math.div($popoveritem-height - $popovericon-size, 2);
973973
.contact .popovermenu ul,
974974
.popover__menu {
975975
> li > a > img {
976-
filter: var(--background-invert-if-dark);
976+
filter: var(--background-invert-if-dark);
977+
978+
// We do not want to invert the color of the user_status emoji:
979+
// https://github.com/nextcloud/nextcloud-vue/blob/8899087f8f8d45e0ed744bde9faa00b625a21905/src/components/NcAvatar/NcAvatar.vue#L495
980+
&[src^="data"] {
981+
filter: none;
982+
}
977983
}
978984
}
979985

core/css/server.css

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)