fix: Table expandable with fixed column style (#22131)

This commit is contained in:
二货机器人 2020-03-11 22:08:07 +08:00 committed by GitHub
parent 84dc474269
commit 7ec2b771d4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -58,10 +58,17 @@
// Fixed first or last should special process
&.@{table-prefix-cls}-cell-fix-left-last,
&.@{table-prefix-cls}-cell-fix-right-first {
display: flex;
overflow: visible;
> .@{table-prefix-cls}-row-indent,
> .@{table-prefix-cls}-row-expand-icon {
flex: none;
}
.@{table-prefix-cls}-cell-content {
display: block;
flex: auto;
overflow: hidden;
text-overflow: ellipsis;
}