mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 19:19:57 +08:00
fix: Table selection out of column when size is small/middle (#24394)
close #24326
This commit is contained in:
parent
58ccb40005
commit
1f371eee09
@ -222,7 +222,6 @@
|
||||
@table-padding-vertical-sm: 4px;
|
||||
@table-padding-horizontal-sm: 4px;
|
||||
@table-selection-column-width: 54px;
|
||||
@table-selection-extra-right: -4px;
|
||||
|
||||
// Statistic
|
||||
// ---
|
||||
|
@ -573,7 +573,7 @@
|
||||
@table-filter-dropdown-bg: @component-background;
|
||||
@table-expand-icon-bg: @component-background;
|
||||
@table-selection-column-width: 60px;
|
||||
@table-selection-extra-right: -10px;
|
||||
@table-selection-extra-right: 0;
|
||||
|
||||
// Tag
|
||||
// --
|
||||
|
@ -360,6 +360,8 @@
|
||||
|
||||
table tr th&-selection-column,
|
||||
table tr td&-selection-column {
|
||||
padding-right: @padding-xs;
|
||||
padding-left: @padding-xs;
|
||||
text-align: center;
|
||||
|
||||
.@{ant-prefix}-radio-wrapper {
|
||||
|
Loading…
Reference in New Issue
Block a user