From b3467b433cbbf4a0e653beffb3ebe0955c245d45 Mon Sep 17 00:00:00 2001 From: Ferdinand Thiessen Date: Mon, 25 Aug 2025 15:51:42 +0200 Subject: [PATCH] fix(core): make sure no alpha mask is applied on the account menu Signed-off-by: Ferdinand Thiessen --- core/src/views/AccountMenu.vue | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/core/src/views/AccountMenu.vue b/core/src/views/AccountMenu.vue index 5b7ead636bd..be36181c402 100644 --- a/core/src/views/AccountMenu.vue +++ b/core/src/views/AccountMenu.vue @@ -197,12 +197,15 @@ export default defineComponent({ } .account-menu { + :deep(*) { + // do not apply the alpha mask on the avatar div + mask: none !important; + } + &__avatar { --account-menu-outline: var(--border-width-input) solid color-mix(in srgb, var(--color-background-plain-text), transparent 75%); outline: var(--account-menu-outline); position: fixed; - // do not apply the alpha mask on the avatar div - mask: none !important; &:hover { --account-menu-outline: none;