From 386dde1053b75369dabed1e1f0ec5988d4127350 Mon Sep 17 00:00:00 2001 From: Artem Zhiganov Date: Thu, 19 Feb 2026 10:50:38 +0100 Subject: [PATCH] fix(explorer): allow touchpad/wheel scrolling over article links `overflow: hidden` on `.folder-outer > ul` creates a scroll container that traps wheel/touchpad events. When the cursor hovers over article links inside folders, the browser tries to scroll this container first. Since it can't actually scroll (content is clipped for the collapse animation), the events are consumed and never reach the parent `ul.overflow` scroll container. `overflow: clip` provides the same visual clipping needed for the `grid-template-rows: 0fr/1fr` collapse animation without creating a scroll container, allowing wheel events to propagate normally. Symptoms: explorer sidebar scrolls with touchpad when hovering over folder titles, but not when hovering over article names within folders. --- quartz/components/styles/explorer.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quartz/components/styles/explorer.scss b/quartz/components/styles/explorer.scss index d0a649633..3b1404929 100644 --- a/quartz/components/styles/explorer.scss +++ b/quartz/components/styles/explorer.scss @@ -153,7 +153,7 @@ button.desktop-explorer { } .folder-outer > ul { - overflow: hidden; + overflow: clip; margin-left: 6px; padding-left: 0.8rem; border-left: 1px solid var(--lightgray);