mirror of
https://git.anonymousland.org/anonymousland/anonymousland.git
synced 2024-10-01 11:49:49 -04:00
29 lines
700 B
SCSS
29 lines
700 B
SCSS
//
|
|
// Breadcrumbs
|
|
// --------------------------------------------------
|
|
|
|
|
|
.breadcrumb {
|
|
padding: $breadcrumb-padding-vertical $breadcrumb-padding-horizontal;
|
|
margin-bottom: $line-height-computed;
|
|
list-style: none;
|
|
background-color: $breadcrumb-bg;
|
|
border-radius: $border-radius-base;
|
|
|
|
> li {
|
|
display: inline-block;
|
|
|
|
+ li:before {
|
|
// [converter] Workaround for https://github.com/sass/libsass/issues/1115
|
|
$nbsp: "\00a0";
|
|
content: "#{$breadcrumb-separator}#{$nbsp}"; // Unicode space added since inline-block means non-collapsing white-space
|
|
padding: 0 5px;
|
|
color: $breadcrumb-color;
|
|
}
|
|
}
|
|
|
|
> .active {
|
|
color: $breadcrumb-active-color;
|
|
}
|
|
}
|