fix(classifier): move pane splitter handle off the folder-tree scrollbar
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) <noreply@anthropic.com>
This commit is contained in:
parent
8f4e28f86a
commit
e32258fa9f
1 changed files with 5 additions and 2 deletions
|
|
@ -103,10 +103,13 @@
|
||||||
font-size: 0.8rem;
|
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 {
|
.resize-handle {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
right: 0;
|
right: -6px;
|
||||||
top: 0;
|
top: 0;
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
width: 5px;
|
width: 5px;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue