fix(modalSnap): adjust edge dock stripe z-index

Lower the edge dock resize stripe z-index so it no longer overlays unrelated UI while remaining interactive.
This commit is contained in:
TimHoogervorst
2026-06-15 08:06:14 +02:00
committed by GitHub
parent ece6cebc03
commit e39c9fbbd5
+1 -1
View File
@@ -994,7 +994,7 @@ export function makeEdgeDockController(modal, side = 'right', dockClass) {
stripe.style.bottom = '0';
stripe.style.width = '10px';
stripe.style.cursor = 'col-resize';
stripe.style.zIndex = '9999';
stripe.style.zIndex = '261';
stripe.style.background = 'linear-gradient(to right, transparent 0 3px, color-mix(in srgb, var(--accent, var(--red)) 35%, transparent) 3px 7px, transparent 7px 10px)';
stripe.style.pointerEvents = 'auto';
stripe.style.touchAction = 'none';