Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/Table/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,11 @@ const StyledTable = styled(AntdTable)`
font-size: ${fontSizeFromTheme};
}

/* Avoid raising the "Keine Daten" overlay above elements such as the menu or dropdown, which have z-index 1050 */
/* Avoid raising the "Keine Daten" overlay above elements such as the menu or dropdown, which have z-index 1050
or modals, which have z-index 1000 */
.mll-ant-table-placeholder {
/* !important is necessary because antd sets the z-index to 9999 via the style attribute */
z-index: 1049 !important;
z-index: 990 !important;
}

${(props) =>
Expand Down