From 822441e0bdb668461c4bb137e9e5bfcbe6a867b0 Mon Sep 17 00:00:00 2001 From: alexandrusoare <37236580+alexandrusoare@users.noreply.github.com> Date: Mon, 13 Jan 2025 19:30:32 +0200 Subject: [PATCH] fix(modal): fixed z-index issue (#31815) --- superset-frontend/src/GlobalStyles.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/superset-frontend/src/GlobalStyles.tsx b/superset-frontend/src/GlobalStyles.tsx index 4a42c9bfb..19f2c2d10 100644 --- a/superset-frontend/src/GlobalStyles.tsx +++ b/superset-frontend/src/GlobalStyles.tsx @@ -39,10 +39,13 @@ export const GlobalStyles = () => ( .echarts-tooltip[style*='visibility: hidden'] { display: none !important; } + .ant-popover, .antd5-dropdown, - .ant-dropdown { + .ant-dropdown, + .ant-select-dropdown { z-index: ${theme.zIndex.max}; } + // TODO: Remove when buttons have been upgraded to Ant Design 5. // Check src/components/Modal for more info. .ant-modal-confirm {