Skip to content

Commit

Permalink
fix(modal): fixed z-index issue (#31815)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandrusoare authored Jan 13, 2025
1 parent 66f1e1f commit 822441e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion superset-frontend/src/GlobalStyles.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 822441e

Please sign in to comment.