From e32258fa9fa69a1bfecdf9c2566aaf48a1c34a8b Mon Sep 17 00:00:00 2001 From: ZDDC Date: Tue, 16 Jun 2026 08:36:19 -0500 Subject: [PATCH] fix(classifier): move pane splitter handle off the folder-tree scrollbar MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The tree-pane resize handle sat at right:0 inside the left pane with z-index:10, so its 5px grab area + hover highlight landed directly on the folder tree's vertical scrollbar — covering it and intercepting the pointer, so the user couldn't grab the scrollbar near the splitter. Shift the handle to right:-6px so it overhangs just past the 1px split border into the right pane, covering that pane's edge padding instead. Drag math is clientX-delta based, so position is purely visual + hit-area — resizing is unchanged. Co-Authored-By: Claude Opus 4.8 (1M context) --- classifier/css/layout.css | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/classifier/css/layout.css b/classifier/css/layout.css index e12b9ae..3665a0d 100644 --- a/classifier/css/layout.css +++ b/classifier/css/layout.css @@ -103,10 +103,13 @@ font-size: 0.8rem; } -/* Resize Handle */ +/* Resize Handle — sits just to the RIGHT of the split (past the 1px + border-right), overhanging the right pane's edge, so its grab area + hover + highlight never cover the folder tree's vertical scrollbar (which lives on the + left pane's right edge). */ .resize-handle { position: absolute; - right: 0; + right: -6px; top: 0; bottom: 0; width: 5px;