From bd9ee8070d39769ab4d7a3a0aba6d5d8de0ca3fe Mon Sep 17 00:00:00 2001 From: sallerli1 Date: Fri, 12 Apr 2024 16:45:05 +0800 Subject: [PATCH] fix(comp:table): fixed end column z-index should be above fixed start columns --- 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); }