Fork-Awesome/assets/less/bootstrap-3.3.5/breadcrumbs.less

27 lines
594 B
Plaintext
Raw Normal View History

2013-10-23 23:12:39 +08:00
//
// Breadcrumbs
// --------------------------------------------------
.breadcrumb {
2014-05-15 04:13:14 +08:00
padding: @breadcrumb-padding-vertical @breadcrumb-padding-horizontal;
2013-10-23 23:12:39 +08:00
margin-bottom: @line-height-computed;
list-style: none;
background-color: @breadcrumb-bg;
border-radius: @border-radius-base;
2014-05-15 04:13:14 +08:00
2013-10-23 23:12:39 +08:00
> li {
display: inline-block;
2014-05-15 04:13:14 +08:00
+ li:before {
content: "@{breadcrumb-separator}\00a0"; // Unicode space added since inline-block means non-collapsing white-space
2013-10-23 23:12:39 +08:00
padding: 0 5px;
color: @breadcrumb-color;
}
}
2014-05-15 04:13:14 +08:00
2013-10-23 23:12:39 +08:00
> .active {
color: @breadcrumb-active-color;
}
}