diff options
| author | Mark Otto <[email protected]> | 2012-10-16 20:34:42 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-10-16 20:34:42 -0700 |
| commit | 709870aa3e5edab74e9644273df092258569b449 (patch) | |
| tree | 5e502d6bf1f31e1e8be4fcec212aaf423706c52f | |
| parent | 57eb2a801827ab2466f6ca4d5d470a72ae14e601 (diff) | |
| download | bootstrap-709870aa3e5edab74e9644273df092258569b449.tar.xz bootstrap-709870aa3e5edab74e9644273df092258569b449.zip | |
fixes #5496: use correct var for dropdown active link text
| -rw-r--r-- | docs/assets/css/bootstrap.css | 2 | ||||
| -rw-r--r-- | less/dropdowns.less | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index 01d119195..2b8dfb944 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 d4fdab47f..26ca0f9ea 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%)); |
