diff options
author | Joas Schilling <coding@schilljs.com> | 2023-01-04 10:18:24 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2023-01-04 11:13:06 +0100 |
commit | a4fec95e57cce29c4e318e75801b6a3527f07673 (patch) | |
tree | 77663232ef932233e4ac8405cbac0b5a7e504e82 /core/css/apps.scss | |
parent | ce50acd9b2d7acb3f04fd7c7940e821cb3d76a71 (diff) | |
download | nextcloud-server-a4fec95e57cce29c4e318e75801b6a3527f07673.tar.gz nextcloud-server-a4fec95e57cce29c4e318e75801b6a3527f07673.zip |
Fix user status icon in avatar menu
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'core/css/apps.scss')
-rw-r--r-- | core/css/apps.scss | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/core/css/apps.scss b/core/css/apps.scss index af28b2466a6..e1b6036a547 100644 --- a/core/css/apps.scss +++ b/core/css/apps.scss @@ -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; + } } } |