]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
fixes #17385: add var for default link decoration
authorMark Otto <markdotto@gmail.com>
Wed, 2 Sep 2015 04:14:51 +0000 (21:14 -0700)
committerMark Otto <markdotto@gmail.com>
Wed, 2 Sep 2015 04:14:51 +0000 (21:14 -0700)
scss/_reboot.scss
scss/_variables.scss

index 0c0accb8b7c6381a4cb827b572f6cc080a4eb8ba..8f07a5ec064152ffd73fa86f4db20ea8964cef94 100644 (file)
@@ -146,7 +146,7 @@ blockquote {
 
 a {
   color: $link-color;
-  text-decoration: none;
+  text-decoration: $link-decoration;
 
   @include hover-focus {
     color: $link-hover-color;
index 6c7cdf5a2c0f5ef28e36822109fd5934e91380e1..b54308e9773bb9875f9ffc47999fdfea2b0f2a22 100644 (file)
@@ -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;