bootstrap/less/breadcrumbs.less

24 lines
540 B
Plaintext
Raw Normal View History

2012-06-29 12:46:45 +08:00
//
// Breadcrumbs
// --------------------------------------------------
.breadcrumb {
padding: 8px 15px;
margin-bottom: @line-height-computed;
list-style: none;
background-color: @breadcrumb-bg;
border-radius: @border-radius-base;
> li {
2012-02-03 03:02:14 +08:00
display: inline-block;
2013-10-15 23:35:11 +08:00
+ li:before {
2013-08-28 17:17:46 +08:00
content: "@{breadcrumb-separator}\00a0"; // Unicode space added since inline-block means non-collapsing white-space
padding: 0 5px;
color: @breadcrumb-color;
}
}
> .active {
color: @breadcrumb-active-color;
}
}