From b80f6b884b4c3837430347bd91653207b1e61655 Mon Sep 17 00:00:00 2001 From: fatadel Date: Wed, 24 Jun 2026 15:26:16 +0200 Subject: [PATCH] Keep menu panels above the selected-marker tooltip When a marker stayed selected, its sticky tooltip rendered on top of the Re-upload and other top-bar menu panels, covering them and intercepting clicks. The panels already carry a higher z-index than tooltips (--z-arrow-panel above --z-tooltip), but .profileViewer set z-index: 0, creating a stacking context that trapped the panels at its own altitude. Tooltips render in the body-level #root-overlay layer, which paints later, so they always won regardless of the scale. Removing that z-index lets the panels and tooltips share the root stacking context, where the scale orders them correctly. Closes #6102 --- src/components/app/ProfileViewer.css | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/components/app/ProfileViewer.css b/src/components/app/ProfileViewer.css index 447647b6a1..36d0c4d8e8 100644 --- a/src/components/app/ProfileViewer.css +++ b/src/components/app/ProfileViewer.css @@ -47,10 +47,7 @@ } .profileViewer { - /* Create a stacking context, so that the KeyboardShortcut can overlay the profile - viewer. */ position: relative; - z-index: 0; display: flex; min-width: 0; /* This allows Flexible Layout to shrink this further than its min-content */ flex: 1;