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 {
border-radius: 4px;
}
.breadcrumb li {
.breadcrumb > li {
display: inline-block;
*display: inline;
text-shadow: 0 1px 0 #ffffff;
*zoom: 1;
}
.breadcrumb .divider {
.breadcrumb > .divider {
padding: 0 5px;
color: #ccc;
}
.breadcrumb .active {
.breadcrumb > .active {
color: #999999;
}
......
......@@ -9,16 +9,16 @@
list-style: none;
background-color: #f5f5f5;
.border-radius(@baseBorderRadius);
li {
> li {
display: inline-block;
.ie7-inline-block();
text-shadow: 0 1px 0 @white;
}
.divider {
> .divider {
padding: 0 5px;
color: #ccc;
}
.active {
> .active {
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