From 68da57bbc01e414ec369bda8594b42d26ea4f0fa Mon Sep 17 00:00:00 2001 From: Kathrin Pindl Date: Tue, 28 Oct 2025 16:46:23 +0100 Subject: [PATCH 1/2] fix: adjust z-index for table placeholder to prevent overlay issues --- src/Table/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Table/index.tsx b/src/Table/index.tsx index fec5f4e5..fbcac3a2 100644 --- a/src/Table/index.tsx +++ b/src/Table/index.tsx @@ -33,7 +33,7 @@ const StyledTable = styled(AntdTable)` /* Avoid raising the "Keine Daten" overlay above elements such as the menu or dropdown, which have z-index 1050 */ .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) => From 3db57e0bdd1ca28a1ad71137a95c4928085e490c Mon Sep 17 00:00:00 2001 From: Kathrin Pindl Date: Wed, 29 Oct 2025 08:49:12 +0100 Subject: [PATCH 2/2] update z-index comment for table placeholder --- src/Table/index.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Table/index.tsx b/src/Table/index.tsx index fbcac3a2..fc356a9d 100644 --- a/src/Table/index.tsx +++ b/src/Table/index.tsx @@ -30,7 +30,8 @@ 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: 990 !important;