1
0
mirror of https://github.com/privacyguides/privacyguides.org.git synced 2025-07-23 03:41:03 +00:00
Files
privacyguides.org/_sass/bootstrap/mixins/_text-emphasis.scss

18 lines
474 B
SCSS
Raw Normal View History

2020-04-28 16:09:22 -05:00
// stylelint-disable declaration-no-important
// Typography
2020-04-28 16:14:23 -05:00
@mixin text-emphasis-variant($parent, $color, $ignore-warning: false) {
2020-04-28 16:09:22 -05:00
#{$parent} {
color: $color !important;
}
@if $emphasized-link-hover-darken-percentage != 0 {
a#{$parent} {
2020-04-28 16:14:23 -05:00
@include hover-focus() {
2020-04-28 16:09:22 -05:00
color: darken($color, $emphasized-link-hover-darken-percentage) !important;
}
}
}
2020-04-28 16:14:23 -05:00
@include deprecate("`text-emphasis-variant()`", "v4.4.0", "v5", $ignore-warning);
2020-04-28 16:09:22 -05:00
}