mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
28 lines
624 B
Text
28 lines
624 B
Text
//
|
|
// Breadcrumbs
|
|
// --------------------------------------------------
|
|
|
|
|
|
.breadcrumb {
|
|
padding: 8px 15px;
|
|
margin: 0 0 @line-height-computed;
|
|
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;
|
|
}
|
|
&:last-child:after {
|
|
display: none; // No divider after last element
|
|
}
|
|
}
|
|
> .active {
|
|
color: @gray-light;
|
|
}
|
|
}
|