// We use these to style anchors
// $anchor-text-decoration: none;
+// $anchor-text-decoration-hover: none;
// $anchor-font-color: $primary-color;
// $anchor-font-color-hover: scale-color($primary-color, $lightness: -14%);
// We use these to style anchors
$anchor-text-decoration: none !default;
+$anchor-text-decoration-hover: none !default;
$anchor-font-color: $primary-color !default;
$anchor-font-color-hover: scale-color($anchor-font-color, $lightness: -14%) !default;
line-height: inherit;
&:hover,
- &:focus { color: $anchor-font-color-hover; }
+ &:focus {
+ color: $anchor-font-color-hover;
+ @if $anchor-text-decoration-hover != $anchor-text-decoration {
+ text-decoration: $anchor-text-decoration-hover;
+ }
+ }
img { border:none; }
}