mirror of
https://github.com/twbs/bootstrap.git
synced 2025-01-17 09:52:29 +01:00
Fixes #6115: scope breadcrumb styles to immediate children only
This commit is contained in:
parent
06582edb2a
commit
869b69c66c
6
docs/assets/css/bootstrap.css
vendored
6
docs/assets/css/bootstrap.css
vendored
@ -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;
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user