Commit 5b8738af authored by Mark Otto's avatar Mark Otto Committed by Mark Otto
Browse files

Fix .btn-outline-light hover color

Uses some if/else action to ensure there's readable text on hover. Swapped out a hex value to a variable while I was in there.

Fixes #23398, fixes #23351.
parent ca7b7cd3
Showing with 5 additions and 1 deletion
+5 -1
...@@ -58,7 +58,11 @@ fieldset[disabled] a.btn { ...@@ -58,7 +58,11 @@ fieldset[disabled] a.btn {
@each $color, $value in $theme-colors { @each $color, $value in $theme-colors {
.btn-outline-#{$color} { .btn-outline-#{$color} {
@include button-outline-variant($value, #fff); @if $color == "light" {
@include button-outline-variant($value, $gray-900);
} @else {
@include button-outline-variant($value, $white);
}
} }
} }
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment