mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-04 17:09:46 +08:00
b445baa001
* chore(deps-dev): bump stylelint-config-prettier from 8.0.2 to 9.0.2 Bumps [stylelint-config-prettier](https://github.com/prettier/stylelint-config-prettier) from 8.0.2 to 9.0.2. - [Release notes](https://github.com/prettier/stylelint-config-prettier/releases) - [Commits](https://github.com/prettier/stylelint-config-prettier/compare/v8.0.2...v9.0.2) --- updated-dependencies: - dependency-name: stylelint-config-prettier dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * chore: autofix stylelint errors * chore: autofix stylelint errors Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: afc163 <afc163@gmail.com>
57 lines
976 B
Plaintext
57 lines
976 B
Plaintext
@import '../../style/themes/index';
|
|
@import '../../style/mixins/index';
|
|
|
|
@breadcrumb-prefix-cls: ~'@{ant-prefix}-breadcrumb';
|
|
|
|
.@{breadcrumb-prefix-cls} {
|
|
.reset-component();
|
|
|
|
color: @breadcrumb-base-color;
|
|
font-size: @breadcrumb-font-size;
|
|
|
|
.@{iconfont-css-prefix} {
|
|
font-size: @breadcrumb-icon-font-size;
|
|
}
|
|
|
|
a {
|
|
color: @breadcrumb-link-color;
|
|
transition: color 0.3s;
|
|
|
|
&:hover {
|
|
color: @breadcrumb-link-color-hover;
|
|
}
|
|
}
|
|
|
|
& > span:last-child {
|
|
color: @breadcrumb-last-item-color;
|
|
|
|
a {
|
|
color: @breadcrumb-last-item-color;
|
|
}
|
|
}
|
|
|
|
& > span:last-child &-separator {
|
|
display: none;
|
|
}
|
|
|
|
&-separator {
|
|
margin: @breadcrumb-separator-margin;
|
|
color: @breadcrumb-separator-color;
|
|
}
|
|
|
|
&-link {
|
|
> .@{iconfont-css-prefix} + span,
|
|
> .@{iconfont-css-prefix} + a {
|
|
margin-left: 4px;
|
|
}
|
|
}
|
|
|
|
&-overlay-link {
|
|
> .@{iconfont-css-prefix} {
|
|
margin-left: 4px;
|
|
}
|
|
}
|
|
}
|
|
|
|
@import './rtl';
|