From 520da46dafd854a96f13117aed060d0cf0670524 Mon Sep 17 00:00:00 2001 From: Aden Linday Date: Sun, 22 Feb 2026 19:23:48 +1030 Subject: [PATCH] fix: fix bug in Vanilla SEQTA Causing unesasary reloads --- src/css/injected.scss | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/css/injected.scss b/src/css/injected.scss index 5eeddb56..0fe0cd72 100644 --- a/src/css/injected.scss +++ b/src/css/injected.scss @@ -3550,6 +3550,16 @@ div.day-empty { scrollbar-width: none !important; } +/* Fix SEQTA update: ul.logo-link covers sidebar and causes page reload on empty space clicks */ +#menu ul.logo-link { + pointer-events: none; + + /* Re-enable clicks on menu items (li) - they're inside the logo-link ul */ + li { + pointer-events: auto; + } +} + .notice-unified-content.notice-modal-state { border: none !important; }