From b786f25918fb46f6c9331533816ceea3bebb0489 Mon Sep 17 00:00:00 2001 From: Gourav Saini Date: Tue, 28 Sep 2021 16:06:55 +0530 Subject: [PATCH] fix: Table selection arrow get covered by fixed column (#32276) * added higher z-index to selection column fixes #32268 * suggested changes --- components/table/style/index.less | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/components/table/style/index.less b/components/table/style/index.less index 8e1a8ee0f3..5162769af4 100644 --- a/components/table/style/index.less +++ b/components/table/style/index.less @@ -437,6 +437,10 @@ } } + table tr th&-selection-column&-cell-fix-left { + z-index: 3; + } + table tr th&-selection-column::after { background-color: transparent !important; }