fix(tables): decouple table-bg and table-accent-bg (#34048)

Co-authored-by: alpadev <2838324+alpadev@users.noreply.github.com>
This commit is contained in:
Gaël Poupard 2021-05-28 09:12:40 +02:00 committed by GitHub
parent 57205e3d8e
commit fd985d3732
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -4,7 +4,7 @@
.table {
--#{$variable-prefix}table-bg: #{$table-bg};
--#{$variable-prefix}table-accent-bg: #{$table-bg};
--#{$variable-prefix}table-accent-bg: #{$table-accent-bg};
--#{$variable-prefix}table-striped-color: #{$table-striped-color};
--#{$variable-prefix}table-striped-bg: #{$table-striped-bg};
--#{$variable-prefix}table-active-color: #{$table-active-color};

View File

@ -535,6 +535,7 @@ $table-cell-vertical-align: top !default;
$table-color: $body-color !default;
$table-bg: transparent !default;
$table-accent-bg: transparent !default;
$table-th-font-weight: null !default;