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

_colored-links.scss « helpers « scss - github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4eea8d333ec26ff52e29eed75e2c2140a48215e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
@each $color, $value in $theme-colors {
  .link-#{$color} {
    color: $value;

    @if $emphasized-link-hover-darken-percentage != 0 {
      &:hover,
      &:focus {
        color: darken($value, $emphasized-link-hover-darken-percentage);
      }
    }
  }
}