2017-10-03 05:34:56 +02:00
|
|
|
// stylelint-disable declaration-no-important
|
|
|
|
|
2014-12-02 23:02:35 +01:00
|
|
|
// Typography
|
|
|
|
|
2019-08-17 21:51:12 +02:00
|
|
|
@mixin text-emphasis-variant($parent, $color, $ignore-warning: false) {
|
2014-12-02 23:02:35 +01:00
|
|
|
#{$parent} {
|
2015-10-30 05:40:42 +01:00
|
|
|
color: $color !important;
|
2014-12-02 23:02:35 +01:00
|
|
|
}
|
2018-12-19 08:19:16 +01:00
|
|
|
@if $emphasized-link-hover-darken-percentage != 0 {
|
|
|
|
a#{$parent} {
|
2019-07-24 09:53:13 +02:00
|
|
|
@include hover-focus() {
|
2018-12-19 08:19:16 +01:00
|
|
|
color: darken($color, $emphasized-link-hover-darken-percentage) !important;
|
|
|
|
}
|
2015-01-01 10:05:01 +01:00
|
|
|
}
|
2014-12-02 23:02:35 +01:00
|
|
|
}
|
2019-08-17 21:51:12 +02:00
|
|
|
@include deprecate("`text-emphasis-variant()`", "v4.4.0", "v5", $ignore-warning);
|
2014-12-02 23:02:35 +01:00
|
|
|
}
|