Skip to content

Commit 709870a

Browse files
committed
fixes twbs#5496: use correct var for dropdown active link text
1 parent 57eb2a8 commit 709870a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/assets/css/bootstrap.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2835,7 +2835,7 @@ table th[class*="span"],
28352835

28362836
.dropdown-menu .active > a,
28372837
.dropdown-menu .active > a:hover {
2838-
color: #ffffff;
2838+
color: #333333;
28392839
text-decoration: none;
28402840
background-color: #0081c2;
28412841
background-image: -moz-linear-gradient(top, #0088cc, #0077b3);

less/dropdowns.less

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@
9797
// ------------
9898
.dropdown-menu .active > a,
9999
.dropdown-menu .active > a:hover {
100-
color: @dropdownLinkColorHover;
100+
color: @dropdownLinkColorActive;
101101
text-decoration: none;
102102
outline: 0;
103103
#gradient > .vertical(@dropdownLinkBackgroundActive, darken(@dropdownLinkBackgroundActive, 5%));

0 commit comments

Comments
 (0)