This is an automated email from the ASF dual-hosted git repository.
diegopucci pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git
The following commit(s) were added to refs/heads/master by this push:
new 822441e0bd fix(modal): fixed z-index issue (#31815)
822441e0bd is described below
commit 822441e0bdb668461c4bb137e9e5bfcbe6a867b0
Author: alexandrusoare <[email protected]>
AuthorDate: Mon Jan 13 19:30:32 2025 +0200
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 4a42c9bfb5..19f2c2d10c 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 {