Files
MoonPro.net/MP-TAB/Content/bootstrap/mixins/_text-emphasis.scss
T
Samuele E. Locatelli 4cd2e9f982 Update bootstrap
2019-04-06 17:02:14 +02:00

17 lines
364 B
SCSS

// stylelint-disable declaration-no-important
// Typography
@mixin text-emphasis-variant($parent, $color) {
#{$parent} {
color: $color !important;
}
@if $emphasized-link-hover-darken-percentage != 0 {
a#{$parent} {
@include hover-focus {
color: darken($color, $emphasized-link-hover-darken-percentage) !important;
}
}
}
}