diff options
author | Joas Schilling <coding@schilljs.com> | 2023-11-29 12:01:20 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2023-11-29 16:38:41 +0100 |
commit | d05a13fc76f96716cd4e42540f91aab8e66e9afb (patch) | |
tree | 50e049d8c83d874a486b27160aa7efd5ec85801c /core | |
parent | 9c0ba1bab97ecae25aa59388e8d9937f8ca06bbb (diff) | |
download | nextcloud-server-d05a13fc76f96716cd4e42540f91aab8e66e9afb.tar.gz nextcloud-server-d05a13fc76f96716cd4e42540f91aab8e66e9afb.zip |
Fix more active entry icons
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'core')
-rw-r--r-- | core/src/views/UserMenu.vue | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/core/src/views/UserMenu.vue b/core/src/views/UserMenu.vue index 0b96ab3cc66..3c57a8eecba 100644 --- a/core/src/views/UserMenu.vue +++ b/core/src/views/UserMenu.vue @@ -261,6 +261,14 @@ export default { svg { filter: var(--background-invert-if-dark); } + + &:active, + &.active { + img, + svg { + filter: var(--primary-invert-if-dark); + } + } } // Override global button styles |