From 32dfb9c447445d22d5121eb695646281e149a52c Mon Sep 17 00:00:00 2001 From: afc163 Date: Mon, 26 Apr 2021 10:35:05 +0800 Subject: [PATCH] fix: Table selection column width when bordered (#30304) close #29083 --- components/table/style/index.less | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/components/table/style/index.less b/components/table/style/index.less index 6c216b7914..2884d877d6 100644 --- a/components/table/style/index.less +++ b/components/table/style/index.less @@ -362,10 +362,14 @@ } // ========================== Selections ========================== - .@{table-prefix-cls}-selection-col { + &-selection-col { width: @table-selection-column-width; } + &-bordered &-selection-col { + width: @table-selection-column-width + 18px; + } + table tr th&-selection-column, table tr td&-selection-column { padding-right: @padding-xs;