2017-10-03 06:34:56 +03:00
|
|
|
// stylelint-disable declaration-no-important
|
|
|
|
|
2014-12-02 14:02:35 -08:00
|
|
|
// Typography
|
|
|
|
|
|
|
|
@mixin text-emphasis-variant($parent, $color) {
|
|
|
|
#{$parent} {
|
2015-10-29 21:40:42 -07:00
|
|
|
color: $color !important;
|
2014-12-02 14:02:35 -08:00
|
|
|
}
|
2018-12-19 16:19:16 +09:00
|
|
|
@if $emphasized-link-hover-darken-percentage != 0 {
|
|
|
|
a#{$parent} {
|
2018-09-18 02:10:07 +03:00
|
|
|
&:hover,
|
|
|
|
&:focus {
|
2018-12-19 16:19:16 +09:00
|
|
|
color: darken($color, $emphasized-link-hover-darken-percentage) !important;
|
|
|
|
}
|
2015-01-01 01:05:01 -08:00
|
|
|
}
|
2014-12-02 14:02:35 -08:00
|
|
|
}
|
|
|
|
}
|