fix(components): fixed total column without background color (#15336)

* fix(components): fixed total column without background color

closed #15324

* Update packages/theme-chalk/src/table.scss

Indeed & it is redundant

Co-authored-by: btea <2356281422@qq.com>

* style(components): delete redundant styles

---------

Co-authored-by: btea <2356281422@qq.com>
This commit is contained in:
WuJianPeng 2024-01-08 16:43:48 +08:00 committed by GitHub
parent e9318e6dde
commit 2664188c21
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -141,13 +141,6 @@
}
}
tfoot {
td.#{$namespace}-table__cell {
background-color: getCssVar('table-row-hover-bg-color');
color: getCssVar('table-text-color');
}
}
.#{$namespace}-table__cell {
padding: map.get($table-padding, 'default');
min-width: 0;
@ -396,6 +389,11 @@
@include e((footer-wrapper)) {
overflow: hidden;
flex-shrink: 0;
tfoot td.#{$namespace}-table__cell {
background-color: getCssVar('table-row-hover-bg-color');
color: getCssVar('table-text-color');
}
}
@include e((header-wrapper, body-wrapper)) {