mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2025-04-13 09:44:40 +00:00
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)
This commit is contained in:
parent
8ecd924026
commit
2502d9c60f
1 changed files with 2 additions and 1 deletions
|
@ -107,7 +107,7 @@ if ($i) {
|
|||
}
|
||||
|
||||
function getPointerEvents() {
|
||||
return defaultStore.state.notificationClickable ? undefined : 'none';
|
||||
return defaultStore.state.notificationClickable ? 'all' : 'none';
|
||||
}
|
||||
</script>
|
||||
|
||||
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue