mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
33e14fe5bf
Conflicts: README.md docs/assets/css/bootstrap.css docs/assets/js/bootstrap.js docs/assets/js/bootstrap.min.js docs/examples/fluid.html docs/scaffolding.html less/breadcrumbs.less less/popovers.less less/responsive.less
25 lines
534 B
Text
25 lines
534 B
Text
//
|
|
// Breadcrumbs
|
|
// --------------------------------------------------
|
|
|
|
|
|
.breadcrumb {
|
|
padding: 8px 15px;
|
|
margin: 0 0 @line-height-base;
|
|
list-style: none;
|
|
background-color: #f5f5f5;
|
|
border-radius: @border-radius-base;
|
|
> li {
|
|
display: inline-block;
|
|
text-shadow: 0 1px 0 #fff;
|
|
&:after {
|
|
display: inline-block;
|
|
content: "\00a0 /"; // Unicode space added since inline-block means non-collapsing white-space
|
|
padding: 0 5px;
|
|
color: #ccc;
|
|
}
|
|
}
|
|
> .active {
|
|
color: @grayLight;
|
|
}
|
|
}
|