ant-design/components/breadcrumb/style/index.less
偏右 d811ebee5c New color system (#4426)
* Add new color patterns algorithm

* Add color palettes

* update other colors

* fix gray color

* update more tint/shade to colorPalette

* new font color

* Update doc for new color system

* improve doc style
2017-01-01 22:20:06 +08:00

37 lines
584 B
Plaintext

@import "../../style/themes/default";
@breadcrumb-prefix-cls: ~"@{ant-prefix}-breadcrumb";
.@{breadcrumb-prefix-cls} {
color: @text-color-secondary;
font-size: @font-size-base;
a {
color: @text-color;
transition: color .3s;
&:hover {
color: @primary-5;
}
}
& > span:last-child {
font-weight: bold;
color: @text-color;
}
& > span:last-child &-separator {
display: none;
}
&-separator {
margin: 0 8px;
color: @border-color-base;
}
&-link {
> .@{iconfont-css-prefix} + span {
margin-left: 4px;
}
}
}