aboutsummaryrefslogtreecommitdiffstats
path: root/resources/tools/dash/app/pal/static/sass/bootstrap/helpers/_colored-links.scss
diff options
context:
space:
mode:
Diffstat (limited to 'resources/tools/dash/app/pal/static/sass/bootstrap/helpers/_colored-links.scss')
-rw-r--r--resources/tools/dash/app/pal/static/sass/bootstrap/helpers/_colored-links.scss12
1 files changed, 0 insertions, 12 deletions
diff --git a/resources/tools/dash/app/pal/static/sass/bootstrap/helpers/_colored-links.scss b/resources/tools/dash/app/pal/static/sass/bootstrap/helpers/_colored-links.scss
deleted file mode 100644
index 1cb4182801..0000000000
--- a/resources/tools/dash/app/pal/static/sass/bootstrap/helpers/_colored-links.scss
+++ /dev/null
@@ -1,12 +0,0 @@
-@each $color, $value in $theme-colors {
- .link-#{$color} {
- color: $value !important; // stylelint-disable-line declaration-no-important
-
- @if $link-shade-percentage != 0 {
- &:hover,
- &:focus {
- 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
- }
- }
- }
-}