fix(modal): fixed z-index issue (#31815)

This commit is contained in:
alexandrusoare 2025-01-13 19:30:32 +02:00 committed by GitHub
parent 66f1e1f714
commit 822441e0bd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 1 deletions

View File

@ -39,10 +39,13 @@ export const GlobalStyles = () => (
.echarts-tooltip[style*='visibility: hidden'] { .echarts-tooltip[style*='visibility: hidden'] {
display: none !important; display: none !important;
} }
.ant-popover,
.antd5-dropdown, .antd5-dropdown,
.ant-dropdown { .ant-dropdown,
.ant-select-dropdown {
z-index: ${theme.zIndex.max}; z-index: ${theme.zIndex.max};
} }
// TODO: Remove when buttons have been upgraded to Ant Design 5. // TODO: Remove when buttons have been upgraded to Ant Design 5.
// Check src/components/Modal for more info. // Check src/components/Modal for more info.
.ant-modal-confirm { .ant-modal-confirm {