Change mixin library to bourbon. Significantly reduces sass build time. https://github.com/nasa/openmctweb/issues/698
31 lines
676 B
SCSS
31 lines
676 B
SCSS
.l-breadcrumb {
|
|
$c: darken($colorBodyFg, 15%);
|
|
$p: 4px;
|
|
font-size: 0.7rem;
|
|
line-height: 1em;
|
|
margin-bottom: $interiorMargin;
|
|
margin-left: -1 * $p;
|
|
.l-breadcrumb-item {
|
|
//@include test();
|
|
a {
|
|
box-sizing: border-box;
|
|
border-radius: $basicCr*.75;
|
|
@include transition(background-color, 0.25s);
|
|
color: darken($colorBodyFg, 15%);
|
|
display: inline-block;
|
|
//margin-right: $interiorMargin;
|
|
padding: $p/2 $p;
|
|
.icon {
|
|
color: $colorItemTreeIcon;
|
|
margin-right: $interiorMargin;
|
|
}
|
|
&:hover {
|
|
background: lighten($colorBodyBg, 10%);
|
|
color: lighten($colorBodyFg, 10%);
|
|
.icon {
|
|
color: $colorItemTreeIconHover;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |