diff options
| author | Martijn Cuppens <[email protected]> | 2019-03-14 18:36:02 +0100 |
|---|---|---|
| committer | XhmikosR <[email protected]> | 2019-03-14 19:36:02 +0200 |
| commit | a88d58605a2aa864eb28da683c187824a580b7ec (patch) | |
| tree | 62ba26b19547019731eacf3369b6b61d4fada8b4 /scss/utilities | |
| parent | 837ff0cc11dd3d25b8fe74129afcd7a81aeb2280 (diff) | |
| download | bootstrap-a88d58605a2aa864eb28da683c187824a580b7ec.tar.xz bootstrap-a88d58605a2aa864eb28da683c187824a580b7ec.zip | |
Remove hover states on background utilities (#28457)
Diffstat (limited to 'scss/utilities')
| -rw-r--r-- | scss/utilities/_background.scss | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/scss/utilities/_background.scss b/scss/utilities/_background.scss index 1f18b2f3f..f9fbb48b9 100644 --- a/scss/utilities/_background.scss +++ b/scss/utilities/_background.scss @@ -1,7 +1,9 @@ // stylelint-disable declaration-no-important @each $color, $value in $theme-colors { - @include bg-variant(".bg-#{$color}", $value); + .bg-#{$color} { + background-color: $value !important; + } } @if $enable-gradients { |
