0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-11-29 11:24:18 +01:00
Bootstrap/less/breadcrumbs.less

24 lines
540 B
Plaintext
Raw Normal View History

2012-06-29 06:46:45 +02: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-02 20:02:14 +01:00
display: inline-block;
2013-10-15 17:35:11 +02:00
+ li:before {
2013-08-28 11:17:46 +02: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;
}
}