diff options
| author | Mark Otto <[email protected]> | 2013-08-15 13:58:16 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-08-15 13:58:16 -0700 |
| commit | bf1772130855ba0423fabe8fdce8015a3f7f739c (patch) | |
| tree | d130281a0717bcef9bed39d36a17b05ebb87f985 /less | |
| parent | 2dbf2bb8fb388f84027ce33429e91c06c573acfc (diff) | |
| download | bootstrap-bf1772130855ba0423fabe8fdce8015a3f7f739c.tar.xz bootstrap-bf1772130855ba0423fabe8fdce8015a3f7f739c.zip | |
fixes #9587: add var for nav link padding
Diffstat (limited to 'less')
| -rw-r--r-- | less/navs.less | 2 | ||||
| -rw-r--r-- | less/variables.less | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/less/navs.less b/less/navs.less index c9c54041e..e4b3243d3 100644 --- a/less/navs.less +++ b/less/navs.less @@ -19,7 +19,7 @@ > a { position: relative; display: block; - padding: 10px 15px; + padding: @nav-link-padding; &:hover, &:focus { text-decoration: none; diff --git a/less/variables.less b/less/variables.less index 79415c637..aa0f9fb0c 100644 --- a/less/variables.less +++ b/less/variables.less @@ -296,6 +296,7 @@ // Navs // ------------------------- +@nav-link-padding: 10px 15px; @nav-link-hover-bg: @gray-lighter; @nav-disabled-link-color: @gray-light; |
