diff options
| author | Mark Otto <[email protected]> | 2014-10-24 13:28:46 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2014-10-24 13:28:46 -0700 |
| commit | a92aea5127e805cb44c9d606a71c48fa19ee157b (patch) | |
| tree | 7ac2edfeb7c5068f9cb141ca7dc18e1552ba2bd6 | |
| parent | 80aca8c17ec928be0cb3ffbac8a237e5f5fcae36 (diff) | |
| parent | 86eac52cceb6b215bf14636f9d8db97c6987777d (diff) | |
| download | bootstrap-a92aea5127e805cb44c9d606a71c48fa19ee157b.tar.xz bootstrap-a92aea5127e805cb44c9d606a71c48fa19ee157b.zip | |
Merge pull request #14786 from andy-saint/links
Added link hover decoration variable
| -rw-r--r-- | less/scaffolding.less | 2 | ||||
| -rw-r--r-- | less/variables.less | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/less/scaffolding.less b/less/scaffolding.less index c1e270fb7..2a40fbcbe 100644 --- a/less/scaffolding.less +++ b/less/scaffolding.less @@ -52,7 +52,7 @@ a { &:hover, &:focus { color: @link-hover-color; - text-decoration: underline; + text-decoration: @link-hover-decoration; } &:focus { diff --git a/less/variables.less b/less/variables.less index 5610236f3..0be497aff 100644 --- a/less/variables.less +++ b/less/variables.less @@ -34,6 +34,8 @@ @link-color: @brand-primary; //** Link hover color set via `darken()` function. @link-hover-color: darken(@link-color, 15%); +//** Link hover decoration. +@link-hover-decoration: underline; //== Typography |
