Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/scss
diff options
context:
space:
mode:
authorJulien Déramond <julien.deramond@orange.com>2022-10-02 17:33:11 +0300
committerGitHub <noreply@github.com>2022-10-02 17:33:11 +0300
commit9edfed8a5e44d438119627ebfa4ebee1bca01c33 (patch)
treebc927109bb0134ded0b026055760e9ce0f987137 /scss
parentd49d8ce583f6f12552f122122a99063738656cd9 (diff)
Don't redefine `$border-color` in `table-variant` mixin (#37239)
Co-authored-by: XhmikosR <xhmikosr@gmail.com>
Diffstat (limited to 'scss')
-rw-r--r--scss/mixins/_table-variants.scss4
1 files changed, 2 insertions, 2 deletions
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};