Blame view
app/bower_components/bootstrap/less/breadcrumbs.less
594 Bytes
|
f986e111b
|
1 2 3 4 5 6 |
//
// Breadcrumbs
// --------------------------------------------------
.breadcrumb {
|
|
87c93a029
|
7 |
padding: @breadcrumb-padding-vertical @breadcrumb-padding-horizontal; |
|
f986e111b
|
8 9 10 11 |
margin-bottom: @line-height-computed;
list-style: none;
background-color: @breadcrumb-bg;
border-radius: @border-radius-base;
|
|
87c93a029
|
12 |
|
|
f986e111b
|
13 14 |
> li {
display: inline-block;
|
|
87c93a029
|
15 |
|
|
f986e111b
|
16 17 18 19 20 21 |
+ li:before {
content: "@{breadcrumb-separator}\00a0"; // Unicode space added since inline-block means non-collapsing white-space
padding: 0 5px;
color: @breadcrumb-color;
}
}
|
|
87c93a029
|
22 |
|
|
f986e111b
|
23 24 25 26 |
> .active {
color: @breadcrumb-active-color;
}
}
|