diff options
author | skjnldsv <skjnldsv@protonmail.com> | 2024-07-31 17:19:25 +0200 |
---|---|---|
committer | nextcloud-command <nextcloud-command@users.noreply.github.com> | 2024-07-31 15:30:05 +0000 |
commit | b92e0c7c6b1c223e7e4a20c5e66b77773097d38b (patch) | |
tree | a4322e35d995f20cf07c39f3ec18e5a89307ee12 /core/src/components/AppMenuEntry.vue | |
parent | 937bb4a539512eba51dbff6475260ddb3ae35cd1 (diff) | |
download | nextcloud-server-b92e0c7c6b1c223e7e4a20c5e66b77773097d38b.tar.gz nextcloud-server-b92e0c7c6b1c223e7e4a20c5e66b77773097d38b.zip |
fix(core): do not show unread notification on app menu hover
Signed-off-by: skjnldsv <skjnldsv@protonmail.com>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
Diffstat (limited to 'core/src/components/AppMenuEntry.vue')
-rw-r--r-- | core/src/components/AppMenuEntry.vue | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/core/src/components/AppMenuEntry.vue b/core/src/components/AppMenuEntry.vue index a16962ca0ef..aada0c63930 100644 --- a/core/src/components/AppMenuEntry.vue +++ b/core/src/components/AppMenuEntry.vue @@ -129,5 +129,9 @@ defineProps<{ .app-menu-entry--active::before { opacity: 0; } + + .app-menu-icon__unread { + opacity: 0; + } } </style> |