From 828c2b2048124f6bac6f17e0b89869bf37ea1135 Mon Sep 17 00:00:00 2001 From: Dustin Healy <54083382+dustinhealy@users.noreply.github.com> Date: Wed, 21 Jan 2026 10:46:02 -0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=8F=20fix:=20Dropdown=20Menu=20Z-Index?= =?UTF-8?q?=20Adjustments=20(#11441)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/client/src/components/OriginalDialog.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/client/src/components/OriginalDialog.tsx b/packages/client/src/components/OriginalDialog.tsx index 451c87c227..e870cbc8c0 100644 --- a/packages/client/src/components/OriginalDialog.tsx +++ b/packages/client/src/components/OriginalDialog.tsx @@ -55,7 +55,7 @@ export const DialogOverlay = React.forwardRef< React.ComponentPropsWithoutRef >(({ className, style, ...props }, ref) => { const depth = React.useContext(DialogDepthContext); - const overlayZIndex = 50 + (depth - 1) * 60; + const overlayZIndex = 130 + (depth - 1) * 60; return ( { const depth = React.useContext(DialogDepthContext); - const contentZIndex = 100 + (depth - 1) * 60; + const contentZIndex = 140 + (depth - 1) * 60; /* Handle Escape key to prevent closing dialog if a tooltip or dropdown has focus (this is a workaround in order to achieve WCAG compliance which requires