Commit 3a2f0765 authored by Mark Otto's avatar Mark Otto
Browse files

fix hover state on .nav-list for active links

parent 73238701
Showing with 5 additions and 4 deletions
+5 -4
No preview for this file type
...@@ -2108,12 +2108,12 @@ button.btn.small, input[type="submit"].btn.small { ...@@ -2108,12 +2108,12 @@ button.btn.small, input[type="submit"].btn.small {
.nav-list > li + .nav-header { .nav-list > li + .nav-header {
margin-top: 9px; margin-top: 9px;
} }
.nav-list .active > a { .nav-list .active > a, .nav-list .active > a:hover {
color: #ffffff; color: #ffffff;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2); text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
background-color: #0088cc; background-color: #0088cc;
} }
.nav-list .icon { .nav-list [class^="icon-"] {
margin-right: 2px; margin-right: 2px;
} }
.nav-tabs, .nav-pills { .nav-tabs, .nav-pills {
......
...@@ -49,12 +49,13 @@ ...@@ -49,12 +49,13 @@
.nav-list > li + .nav-header { .nav-list > li + .nav-header {
margin-top: 9px; margin-top: 9px;
} }
.nav-list .active > a { .nav-list .active > a,
.nav-list .active > a:hover {
color: @white; color: @white;
text-shadow: 0 -1px 0 rgba(0,0,0,.2); text-shadow: 0 -1px 0 rgba(0,0,0,.2);
background-color: @linkColor; background-color: @linkColor;
} }
.nav-list .icon { .nav-list [class^="icon-"] {
margin-right: 2px; margin-right: 2px;
} }
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment