From 709870aa3e5edab74e9644273df092258569b449 Mon Sep 17 00:00:00 2001 From: Mark Otto <markdotto@gmail.com> Date: Tue, 16 Oct 2012 20:34:42 -0700 Subject: [PATCH] fixes #5496: use correct var for dropdown active link text --- docs/assets/css/bootstrap.css | 2 +- 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 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%)); -- GitLab