fix(core): make sure no alpha mask is applied on the account menu

Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
pull/54631/head
Ferdinand Thiessen 2025-08-25 15:51:42 +07:00
parent a7a78054aa
commit b3467b433c
1 changed files with 5 additions and 2 deletions

@ -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;