Skip to content

Commit

Permalink
style(breadcrumb): update disabled text color
Browse files Browse the repository at this point in the history
  • Loading branch information
kailong502431556 committed Jan 19, 2022
1 parent 71b1c5e commit 1522e92
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions src/components/Breadcrumb/src/Breadcrumb.vue
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ export default defineComponent({
</script>

<style lang="less" scoped>
:deep(.el-breadcrumb__item):not(:last-child) {
:deep(.el-breadcrumb__item) {
display: flex;
.el-breadcrumb__inner {
Expand All @@ -97,12 +97,22 @@ export default defineComponent({
}
}
:deep(.el-breadcrumb__item):not(:last-child) {
.el-breadcrumb__inner {
color: var(--top-header-text-color);
&:hover {
color: var(--el-color-primary);
}
}
}
:deep(.el-breadcrumb__item):last-child {
.el-breadcrumb__inner {
color: rgba(255, 255, 255, 0.6);
color: var(--el-text-color-placeholder);
&:hover {
color: rgba(255, 255, 255, 0.6);
color: var(--el-text-color-placeholder);
}
}
}
Expand Down

0 comments on commit 1522e92

Please sign in to comment.