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:
parent
ece6cebc03
commit
e39c9fbbd5
1 changed files with 1 additions and 1 deletions
|
|
@ -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';
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue