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

Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
This commit is contained in:
Ferdinand Thiessen 2025-08-25 15:51:42 +02:00
parent a7a78054aa
commit b3467b433c

View file

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