From: Julien Déramond Date: Sun, 2 Oct 2022 14:33:11 +0000 (+0200) Subject: Don't redefine `$border-color` in `table-variant` mixin (#37239) X-Git-Tag: v5.2.2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9edfed8a5e44d438119627ebfa4ebee1bca01c33;p=thirdparty%2Fbootstrap.git Don't redefine `$border-color` in `table-variant` mixin (#37239) Co-authored-by: XhmikosR --- diff --git a/scss/mixins/_table-variants.scss b/scss/mixins/_table-variants.scss index ae43ec63d9..5fe1b9b20d 100644 --- a/scss/mixins/_table-variants.scss +++ b/scss/mixins/_table-variants.scss @@ -5,11 +5,11 @@ $hover-bg: mix($color, $background, percentage($table-hover-bg-factor)); $striped-bg: mix($color, $background, percentage($table-striped-bg-factor)); $active-bg: mix($color, $background, percentage($table-active-bg-factor)); - $border-color: mix($color, $background, percentage($table-border-factor)); + $table-border-color: mix($color, $background, percentage($table-border-factor)); --#{$prefix}table-color: #{$color}; --#{$prefix}table-bg: #{$background}; - --#{$prefix}table-border-color: #{$border-color}; + --#{$prefix}table-border-color: #{$table-border-color}; --#{$prefix}table-striped-bg: #{$striped-bg}; --#{$prefix}table-striped-color: #{color-contrast($striped-bg)}; --#{$prefix}table-active-bg: #{$active-bg};