Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_text-emphasis.scss « mixins « bootstrap « vendor « sass « assets - github.com/marcanuy/simpleit-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5eb8a5515412053d335ca360aa51f0722616b80f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// stylelint-disable declaration-no-important

// Typography

@mixin text-emphasis-variant($parent, $color, $ignore-warning: false) {
  #{$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;
      }
    }
  }
  @include deprecate("`text-emphasis-variant()`", "v4.4.0", "v5", $ignore-warning);
}