fix(layout): enlarge tiling scrollbar hit area - #261
Conversation
|
Thanks for digging into this — the The strip's scrollbar is already 10px
Measured against this branch's actual
Controls, showing the mechanism works but isn't pointed at a new number:
The drag target gets 1px smallerI probed the real grab area row by row over CDP (synthetic So after this change the scrollbar is one pixel harder to grab, not five pixels easier. What does change is the lookThe strip switches from the native thin scrollbar to a custom Blink scrollbar: the arrow buttons disappear and the thumb runs flush to the ends, but painted thumb thickness is ~6px either way. Net effect is that this one scroller now renders differently from every other scroller in the app, with no targetability gain. The test is green for the wrong reason
The CSS-text pattern is fine in general and matches #255's second request is untouchedThe handles ( Suggested directionSince the band is already 10px and draggable across its full height, the reporter's problem is most likely aim/visibility plus the neighbouring resize zone:
If the Happy to share the measurement harness (static HTML + the CDP probe script) if it's useful for the follow-up. |
Description
Increases the horizontal scrollbar hit area for the tiling layout strip from 5px to 10px while keeping the painted thumb approximately 6px tall.
The tiling strip previously inherited the global 5px scrollbar size, making it difficult to target. Missing the scrollbar could also place the pointer over nearby panel resize handles.
This change:
.tiling-layout-stripIssues Resolved
Fixes #255
Check List