diff options
author | Joas Schilling <coding@schilljs.com> | 2023-11-29 12:01:20 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2023-11-30 09:15:44 +0100 |
commit | 32ec76e8d913fa871d7e313610209da52cecc638 (patch) | |
tree | 42b1bedbe9e09bea0f65757be5a79abaa1003a48 /core | |
parent | 217753d5f37034c9900002a6528b1c82803bdf25 (diff) | |
download | nextcloud-server-32ec76e8d913fa871d7e313610209da52cecc638.tar.gz nextcloud-server-32ec76e8d913fa871d7e313610209da52cecc638.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 |