1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-02-24 03:40:10 +00:00
bootstrap/less/breadcrumbs.less

26 lines
580 B
Plaintext
Raw Normal View History

2012-06-28 21:46:45 -07:00
//
// Breadcrumbs
// --------------------------------------------------
.breadcrumb {
padding: 8px 15px;
margin: 0 0 @line-height-computed;
list-style: none;
background-color: @breadcrumb-bg-color;
border-radius: @border-radius-base;
> li {
2012-02-02 11:02:14 -08:00
display: inline-block;
text-shadow: 0 1px 0 @breadcrumb-text-shadow-color;
&+li:before {
display: inline-block;
content: "/\00a0"; // Unicode space added since inline-block means non-collapsing white-space
padding: 0 5px;
color: #ccc;
}
}
> .active {
color: @gray-light;
}
}