aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGaĆ«l Poupard <[email protected]>2021-05-28 09:12:40 +0200
committerGitHub <[email protected]>2021-05-28 09:12:40 +0200
commitfd985d3732f170f4d55f93800bf82bb3137836e3 (patch)
tree94ea75f6d83db71b0b5a0204f2c811e4f381becd
parent57205e3d8eb3282927098ac5a03a322453978a5d (diff)
downloadbootstrap-fd985d3732f170f4d55f93800bf82bb3137836e3.tar.xz
bootstrap-fd985d3732f170f4d55f93800bf82bb3137836e3.zip
fix(tables): decouple table-bg and table-accent-bg (#34048)
Co-authored-by: alpadev <[email protected]>
-rw-r--r--scss/_tables.scss2
-rw-r--r--scss/_variables.scss1
2 files changed, 2 insertions, 1 deletions
diff --git a/scss/_tables.scss b/scss/_tables.scss
index 19f679d28..92556ba05 100644
--- a/scss/_tables.scss
+++ b/scss/_tables.scss
@@ -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};
diff --git a/scss/_variables.scss b/scss/_variables.scss
index 15343e435..9a1f3daad 100644
--- a/scss/_variables.scss
+++ b/scss/_variables.scss
@@ -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;