blob: b61f0c731caf2f99d3fba09e6643216c679984a6 [file] [log] [blame]
Matteo Scandolo144c1882016-03-25 17:20:27 -07001//
2// Breadcrumbs
3// --------------------------------------------------
4
5
6.breadcrumb {
7 padding: $breadcrumb-padding-vertical $breadcrumb-padding-horizontal;
8 margin-bottom: $line-height-computed;
9 list-style: none;
10 background-color: $breadcrumb-bg;
11 border-radius: $border-radius-base;
12
13 > li {
14 display: inline-block;
15
16 + li:before {
17 // [converter] Workaround for https://github.com/sass/libsass/issues/1115
18 $nbsp: "\00a0";
19 content: "#{$breadcrumb-separator}#{$nbsp}"; // Unicode space added since inline-block means non-collapsing white-space
20 padding: 0 5px;
21 color: $breadcrumb-color;
22 }
23 }
24
25 > .active {
26 color: $breadcrumb-active-color;
27 }
28}