You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1012 B
56 lines
1012 B
3 years ago
|
@import "mixins/mixins";
|
||
|
@import "mixins/utils";
|
||
|
@import "common/var";
|
||
|
|
||
|
@include b(breadcrumb) {
|
||
|
font-size: 14px;
|
||
|
line-height: 1;
|
||
|
@include utils-clearfix;
|
||
|
|
||
|
@include e(separator) {
|
||
|
margin: 0 9px;
|
||
|
font-weight: bold;
|
||
|
color: $--color-text-placeholder;
|
||
|
|
||
|
&[class*=icon] {
|
||
|
margin: 0 6px;
|
||
|
font-weight: normal;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@include e(item) {
|
||
|
float: left;
|
||
|
|
||
|
@include e(inner) {
|
||
|
color: $--color-text-regular;
|
||
|
|
||
|
&.is-link, & a {
|
||
|
font-weight: bold;
|
||
|
text-decoration: none;
|
||
|
transition: $--color-transition-base;
|
||
|
color: $--color-text-primary;
|
||
|
|
||
|
&:hover {
|
||
|
color: $--color-primary;
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
&:last-child {
|
||
|
.el-breadcrumb__inner,
|
||
|
.el-breadcrumb__inner a {
|
||
|
&, &:hover {
|
||
|
font-weight: normal;
|
||
|
color: $--color-text-regular;
|
||
|
cursor: text;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.el-breadcrumb__separator {
|
||
|
display: none;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|