diff options
| author | Chris Rebert <[email protected]> | 2015-10-29 21:40:42 -0700 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2015-10-29 21:40:42 -0700 |
| commit | 8bcf60148ad46f0a66fe3fb261fa71c15e9f3e3e (patch) | |
| tree | 4ee45dd2b2346363c8ed9d14466edeaece403a8f | |
| parent | 6e8f08dc6706a00a0d6a54284d61cc12857a15d8 (diff) | |
| download | bootstrap-8bcf60148ad46f0a66fe3fb261fa71c15e9f3e3e.tar.xz bootstrap-8bcf60148ad46f0a66fe3fb261fa71c15e9f3e3e.zip | |
Add !important to text and background color utility classes
[skip sauce]
[skip validator]
| -rw-r--r-- | scss/mixins/_background-variant.scss | 4 | ||||
| -rw-r--r-- | scss/mixins/_text-emphasis.scss | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/scss/mixins/_background-variant.scss b/scss/mixins/_background-variant.scss index d2cc54319..0c9f2f084 100644 --- a/scss/mixins/_background-variant.scss +++ b/scss/mixins/_background-variant.scss @@ -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 { diff --git a/scss/mixins/_text-emphasis.scss b/scss/mixins/_text-emphasis.scss index 0a6428ea7..27a4f454e 100644 --- a/scss/mixins/_text-emphasis.scss +++ b/scss/mixins/_text-emphasis.scss @@ -2,7 +2,7 @@ @mixin text-emphasis-variant($parent, $color) { #{$parent} { - color: $color; + color: $color !important; } a#{$parent} { @include hover-focus { |
