1
0
mirror of https://gitlab.com/JKANetwork/CheckServer.git synced 2026-02-18 19:21:35 +01:00
Files
CheckServer/vendors/parsleyjs/bower_components/bootstrap/less/breadcrumbs.less
2020-10-04 17:14:00 +02: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;
}
}