fix(modal): fixed z-index issue (#31815)
This commit is contained in:
parent
66f1e1f714
commit
822441e0bd
|
|
@ -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 {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue