From 2502d9c60f8418f196e7cfab820fa991550e5d62 Mon Sep 17 00:00:00 2001 From: CenTdemeern1 Date: Thu, 6 Mar 2025 16:44:16 +0100 Subject: [PATCH] Fix clickable notifications blocking clicks where they shouldn't The (full screen width) div behind the notifications has unintentionally been blocking clicks. Oops! (Thanks for reporting this everyone) --- packages/frontend/src/ui/_common_/common.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/frontend/src/ui/_common_/common.vue b/packages/frontend/src/ui/_common_/common.vue index 7e29a5eeff..227d9bb7e6 100644 --- a/packages/frontend/src/ui/_common_/common.vue +++ b/packages/frontend/src/ui/_common_/common.vue @@ -107,7 +107,7 @@ if ($i) { } function getPointerEvents() { - return defaultStore.state.notificationClickable ? undefined : 'none'; + return defaultStore.state.notificationClickable ? 'all' : 'none'; } @@ -131,6 +131,7 @@ function getPointerEvents() { z-index: 3900000; padding: 0 var(--MI-margin); display: flex; + pointer-events: none; &.notificationsPosition_leftTop { top: var(--MI-margin);