2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-05-24 14:04:09 +03:00

Merge pull request #18109 from twbs/color-utils-important

Add !important to text and background color utility classes
This commit is contained in:
Chris Rebert
2015-11-12 17:02:56 -08:00
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -2,8 +2,8 @@
@mixin bg-variant($parent, $color) {
#{$parent} {
color: #fff;
background-color: $color;
color: #fff !important;
background-color: $color !important;
}
a#{$parent} {
@include hover-focus {
+1 -1
View File
@@ -2,7 +2,7 @@
@mixin text-emphasis-variant($parent, $color) {
#{$parent} {
color: $color;
color: $color !important;
}
a#{$parent} {
@include hover-focus {