Skip to content

Commit

Permalink
Manually set hover and active backgrounds and borders for dark and li…
Browse files Browse the repository at this point in the history
…ght buttons
  • Loading branch information
mdo committed Jun 8, 2022
1 parent ae34420 commit d16a162
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion scss/_buttons.scss
Expand Up @@ -103,7 +103,27 @@
// scss-docs-start btn-variant-loops
@each $color, $value in $theme-colors {
.btn-#{$color} {
@include button-variant($value, $value);
@if $color == "light" {
@include button-variant(
$value,
$value,
$hover-background: shade-color($value, $btn-hover-bg-shade-amount),
$hover-border: shade-color($value, $btn-hover-border-shade-amount),
$active-background: shade-color($value, $btn-active-bg-shade-amount),
$active-border: shade-color($value, $btn-active-border-shade-amount)
);
} @else if $color == "dark" {
@include button-variant(
$value,
$value,
$hover-background: tint-color($value, $btn-hover-bg-tint-amount),
$hover-border: tint-color($value, $btn-hover-border-tint-amount),
$active-background: tint-color($value, $btn-active-bg-tint-amount),
$active-border: tint-color($value, $btn-active-border-tint-amount)
);
} @else {
@include button-variant($value, $value);
}
}
}

Expand Down

0 comments on commit d16a162

Please sign in to comment.