equal
deleted
inserted
replaced
|
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 } |