diff options
| author | Julien Déramond <[email protected]> | 2022-10-02 16:33:11 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-10-02 16:33:11 +0200 |
| commit | 9edfed8a5e44d438119627ebfa4ebee1bca01c33 (patch) | |
| tree | bc927109bb0134ded0b026055760e9ce0f987137 | |
| parent | d49d8ce583f6f12552f122122a99063738656cd9 (diff) | |
| download | bootstrap-9edfed8a5e44d438119627ebfa4ebee1bca01c33.tar.xz bootstrap-9edfed8a5e44d438119627ebfa4ebee1bca01c33.zip | |
Don't redefine `$border-color` in `table-variant` mixin (#37239)
Co-authored-by: XhmikosR <[email protected]>
| -rw-r--r-- | scss/mixins/_table-variants.scss | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scss/mixins/_table-variants.scss b/scss/mixins/_table-variants.scss index ae43ec63d..5fe1b9b20 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}; |
