60b33ea72b36e8affbf12075e7d66490f107dbd5
[mindcoding-template-patches.git] / less / breadcrumbs.less
1 //
2 // Breadcrumbs
3 // --------------------------------------------------
4
5
6 .breadcrumb {
7 padding: 8px 15px;
8 margin-bottom: @line-height-computed;
9 list-style: none;
10 background-color: @breadcrumb-bg;
11 border-radius: @border-radius-base;
12 > li {
13 display: inline-block;
14 + li:before {
15 content: "@{breadcrumb-separator}\00a0"; // Unicode space added since inline-block means non-collapsing white-space
16 padding: 0 5px;
17 color: @breadcrumb-color;
18 }
19 }
20 > .active {
21 color: @breadcrumb-active-color;
22 }
23 }
This page took 0.021088 seconds and 3 git commands to generate.