Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Otto <markdotto@gmail.com>2012-10-17 07:34:42 +0400
committerMark Otto <markdotto@gmail.com>2012-10-17 07:34:42 +0400
commit709870aa3e5edab74e9644273df092258569b449 (patch)
tree5e502d6bf1f31e1e8be4fcec212aaf423706c52f
parent57eb2a801827ab2466f6ca4d5d470a72ae14e601 (diff)
fixes #5496: use correct var for dropdown active link text
-rw-r--r--docs/assets/css/bootstrap.css2
-rw-r--r--less/dropdowns.less2
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css
index 01d119195d..2b8dfb944f 100644
--- a/docs/assets/css/bootstrap.css
+++ b/docs/assets/css/bootstrap.css
@@ -2835,7 +2835,7 @@ table th[class*="span"],
.dropdown-menu .active > a,
.dropdown-menu .active > a:hover {
- color: #ffffff;
+ color: #333333;
text-decoration: none;
background-color: #0081c2;
background-image: -moz-linear-gradient(top, #0088cc, #0077b3);
diff --git a/less/dropdowns.less b/less/dropdowns.less
index d4fdab47fc..26ca0f9ea8 100644
--- a/less/dropdowns.less
+++ b/less/dropdowns.less
@@ -97,7 +97,7 @@
// ------------
.dropdown-menu .active > a,
.dropdown-menu .active > a:hover {
- color: @dropdownLinkColorHover;
+ color: @dropdownLinkColorActive;
text-decoration: none;
outline: 0;
#gradient > .vertical(@dropdownLinkBackgroundActive, darken(@dropdownLinkBackgroundActive, 5%));