diff --git a/components/style/themes/default.less b/components/style/themes/default.less index 777372e145..d1457accb1 100644 --- a/components/style/themes/default.less +++ b/components/style/themes/default.less @@ -416,6 +416,8 @@ @table-padding-vertical: 16px; @table-padding-horizontal: 16px; @table-border-radius-base: @border-radius-base; +@table-footer-bg: @background-color-light; +@table-footer-color: @heading-color; // Tag // -- diff --git a/components/table/style/index.less b/components/table/style/index.less index 04df8ef742..103db6225e 100644 --- a/components/table/style/index.less +++ b/components/table/style/index.less @@ -255,7 +255,8 @@ &-footer { position: relative; padding: @table-padding-vertical @table-padding-horizontal; - background: @table-header-bg; + color: @table-footer-color; + background: @table-footer-bg; border-top: @border-width-base @border-style-base @border-color-split; border-radius: 0 0 @table-border-radius-base @table-border-radius-base; &::before { @@ -264,7 +265,7 @@ left: 0; width: 100%; height: 1px; - background: @table-header-bg; + background: @table-footer-bg; content: ''; } }