From 7ad991dc1cff1e055b88913b917844a820e273ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Naz=C4=B1m=20Can=20Alt=C4=B1nova?= Date: Fri, 22 May 2026 00:02:31 +0200 Subject: [PATCH] Fix call node context menu being hidden behind source view bottom box DetailsContainer set `position: relative; z-index: 0`, creating a stacking context that trapped the context menus (rendered inside DetailsContainer) at z-index 0. The BottomBox is a sibling of DetailsContainer that comes later in the DOM, so it painted on top of the menus whenever the source view was open. Removing the stacking context from DetailsContainer lets the context menu's --z-context-menu compete at .profileViewer level and paint above the BottomBox. The parent .profileViewer still provides a stacking context for the KeyboardShortcut overlay. --- src/components/app/DetailsContainer.css | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/components/app/DetailsContainer.css b/src/components/app/DetailsContainer.css index 78bd724119..5c24522df0 100644 --- a/src/components/app/DetailsContainer.css +++ b/src/components/app/DetailsContainer.css @@ -1,6 +1,4 @@ .DetailsContainer { - position: relative; - z-index: 0; display: flex; box-sizing: border-box; flex: 1;