mirror of
https://github.com/nextcloud/server.git
synced 2026-03-27 12:54:24 -04:00
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:
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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue