roojs-all.js
[roojs1] / scss / bootstrap / mixins / _text-emphasis.scss
1 // stylelint-disable declaration-no-important
2
3 // Typography
4
5 @mixin text-emphasis-variant($parent, $color) {
6   #{$parent} {
7     color: $color !important;
8   }
9   a#{$parent} {
10     @include hover-focus {
11       color: darken($color, $emphasized-link-hover-darken-percentage) !important;
12     }
13   }
14 }