Commit 869b69c6 authored by Mark Otto's avatar Mark Otto

Fixes #6115: scope breadcrumb styles to immediate children only

parent 06582edb
...@@ -4859,19 +4859,19 @@ input[type="submit"].btn.btn-mini { ...@@ -4859,19 +4859,19 @@ input[type="submit"].btn.btn-mini {
border-radius: 4px; border-radius: 4px;
} }
.breadcrumb li { .breadcrumb > li {
display: inline-block; display: inline-block;
*display: inline; *display: inline;
text-shadow: 0 1px 0 #ffffff; text-shadow: 0 1px 0 #ffffff;
*zoom: 1; *zoom: 1;
} }
.breadcrumb .divider { .breadcrumb > .divider {
padding: 0 5px; padding: 0 5px;
color: #ccc; color: #ccc;
} }
.breadcrumb .active { .breadcrumb > .active {
color: #999999; color: #999999;
} }
......
...@@ -9,16 +9,16 @@ ...@@ -9,16 +9,16 @@
list-style: none; list-style: none;
background-color: #f5f5f5; background-color: #f5f5f5;
.border-radius(@baseBorderRadius); .border-radius(@baseBorderRadius);
li { > li {
display: inline-block; display: inline-block;
.ie7-inline-block(); .ie7-inline-block();
text-shadow: 0 1px 0 @white; text-shadow: 0 1px 0 @white;
} }
.divider { > .divider {
padding: 0 5px; padding: 0 5px;
color: #ccc; color: #ccc;
} }
.active { > .active {
color: @grayLight; color: @grayLight;
} }
} }
Markdown is supported
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