fsfe-website/look/bootstrap/breadcrumbs.less
hugo d48c9cf232 applying the new design, let’s see
svn path=/branches/test/; revision=27437
2014-01-23 15:39:19 +00:00

24 lines
540 B
Plaintext

//
// Breadcrumbs
// --------------------------------------------------
.breadcrumb {
padding: 8px 15px;
margin-bottom: @line-height-computed;
list-style: none;
background-color: @breadcrumb-bg;
border-radius: @border-radius-base;
> li {
display: inline-block;
+ li:before {
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;
}
}