From e39c9fbbd519c76803bbeec02bd35c01cf57cba0 Mon Sep 17 00:00:00 2001 From: TimHoogervorst <40735264+TimHoogervorst@users.noreply.github.com> Date: Mon, 15 Jun 2026 08:06:14 +0200 Subject: [PATCH] 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. --- static/js/modalSnap.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/js/modalSnap.js b/static/js/modalSnap.js index e7cce55dd..218fd3500 100644 --- a/static/js/modalSnap.js +++ b/static/js/modalSnap.js @@ -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';