]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
fix(tables): decouple table-bg and table-accent-bg (#34048)
authorGaël Poupard <ffoodd@users.noreply.github.com>
Fri, 28 May 2021 07:12:40 +0000 (09:12 +0200)
committerGitHub <noreply@github.com>
Fri, 28 May 2021 07:12:40 +0000 (09:12 +0200)
Co-authored-by: alpadev <2838324+alpadev@users.noreply.github.com>
scss/_tables.scss
scss/_variables.scss

index 19f679d28871f40549a7429cfd26a51f1b81ae6f..92556ba05e3d411ad87cfbdb76d5b3168593af4f 100644 (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};
index 15343e435fbe5a7c93951094fcd38d6817013575..9a1f3daad9edac342d837f44a859de418202cca2 100644 (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;