Upgrade to bootstrap 4.5
[roojs1] / scss / bootstrap / mixins / _text-emphasis.scss
1 // stylelint-disable declaration-no-important
2
3 // Typography
4
5 @mixin text-emphasis-variant($parent, $color, $ignore-warning: false) {
6   #{$parent} {
7     color: $color !important;
8   }
9   @if $emphasized-link-hover-darken-percentage != 0 {
10     a#{$parent} {
11       @include hover-focus() {
12         color: darken($color, $emphasized-link-hover-darken-percentage) !important;
13       }
14     }
15   }
16   @include deprecate("`text-emphasis-variant()`", "v4.4.0", "v5", $ignore-warning);
17 }