From 8f9e50c02d226f3abc083330f8e30b10b2f6511c Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Tue, 1 Sep 2015 21:14:51 -0700 Subject: [PATCH] fixes #17385: add var for default link decoration --- scss/_reboot.scss | 2 +- scss/_variables.scss | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/scss/_reboot.scss b/scss/_reboot.scss index 0c0accb8b7..8f07a5ec06 100644 --- a/scss/_reboot.scss +++ b/scss/_reboot.scss @@ -146,7 +146,7 @@ blockquote { a { color: $link-color; - text-decoration: none; + text-decoration: $link-decoration; @include hover-focus { color: $link-hover-color; diff --git a/scss/_variables.scss b/scss/_variables.scss index 6c7cdf5a2c..b54308e977 100644 --- a/scss/_variables.scss +++ b/scss/_variables.scss @@ -76,6 +76,7 @@ $body-color: $gray-dark !default; // Style anchor elements. $link-color: $brand-primary !default; +$link-decoration: none !default; $link-hover-color: darken($link-color, 15%) !default; $link-hover-decoration: underline !default;