From 49418677195a7d77bdfdfe816500240a769e9001 Mon Sep 17 00:00:00 2001 From: saller Date: Sat, 13 Apr 2024 10:36:10 +0800 Subject: [PATCH] fix(comp:table): fixed end column z-index should be above fixed start columns (#1892) --- packages/components/table/style/fixed.less | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/packages/components/table/style/fixed.less b/packages/components/table/style/fixed.less index 636c27bf8..486e90d97 100644 --- a/packages/components/table/style/fixed.less +++ b/packages/components/table/style/fixed.less @@ -1,9 +1,13 @@ .@{table-prefix} { &-fix { + &-start { + z-index: 2; + } + &-end { + z-index: 3; + } &-start, &-end { - z-index: 2; - td& { background-color: var(--ix-color-container-bg); }