Update VPP_STABLE_VER files
[csit.git] / csit.infra.dash / app / pal / static / sass / bootstrap / helpers / _colored-links.scss
1 @each $color, $value in $theme-colors {
2   .link-#{$color} {
3     color: $value !important; // stylelint-disable-line declaration-no-important
4
5     @if $link-shade-percentage != 0 {
6       &:hover,
7       &:focus {
8         color: if(color-contrast($value) == $color-contrast-light, shade-color($value, $link-shade-percentage), tint-color($value, $link-shade-percentage)) !important; // stylelint-disable-line declaration-no-important
9       }
10     }
11   }
12 }