Commit compiled front-end code to the repo

This commit is contained in:
Rowan Manning
2013-11-05 11:26:18 +00:00
parent 2471419b5b
commit 6b0cf20e4e
288 changed files with 93958 additions and 19 deletions

View File

@@ -0,0 +1,23 @@
//
// 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;
}
}