Skip to content

Commit 985eca3

Browse files
authored
Merge pull request nextcloud#54631 from nextcloud/fix/account-menu-mask
fix(core): make sure no alpha mask is applied on the account menu
2 parents a23c087 + 9c1d306 commit 985eca3

File tree

5 files changed

+10
-7
lines changed

5 files changed

+10
-7
lines changed

apps/settings/css/settings.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apps/settings/css/settings.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

core/src/views/AccountMenu.vue

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -197,12 +197,15 @@ export default defineComponent({
197197
}
198198
199199
.account-menu {
200+
:deep(*) {
201+
// do not apply the alpha mask on the avatar div
202+
mask: none !important;
203+
}
204+
200205
&__avatar {
201206
--account-menu-outline: var(--border-width-input) solid color-mix(in srgb, var(--color-background-plain-text), transparent 75%);
202207
outline: var(--account-menu-outline);
203208
position: fixed;
204-
// do not apply the alpha mask on the avatar div
205-
mask: none !important;
206209
207210
&:hover {
208211
--account-menu-outline: none;

dist/core-main.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/core-main.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)