1e43af8fcd4c5eb6739a8989db125754c94d7b3027022b73e9b56ee8cb571624974a7e9dea96e81bd32081c2b5a99894fb5f95fe985a6ec885b0e4e6c9168b 1012 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. @import "mixins/mixins";
  2. @import "mixins/utils";
  3. @import "common/var";
  4. @include b(breadcrumb) {
  5. font-size: 14px;
  6. line-height: 1;
  7. @include utils-clearfix;
  8. @include e(separator) {
  9. margin: 0 9px;
  10. font-weight: bold;
  11. color: $--color-text-placeholder;
  12. &[class*=icon] {
  13. margin: 0 6px;
  14. font-weight: normal;
  15. }
  16. }
  17. @include e(item) {
  18. float: left;
  19. @include e(inner) {
  20. color: $--color-text-regular;
  21. &.is-link, & a {
  22. font-weight: bold;
  23. text-decoration: none;
  24. transition: $--color-transition-base;
  25. color: $--color-text-primary;
  26. &:hover {
  27. color: $--color-primary;
  28. cursor: pointer;
  29. }
  30. }
  31. }
  32. &:last-child {
  33. .el-breadcrumb__inner,
  34. .el-breadcrumb__inner a {
  35. &, &:hover {
  36. font-weight: normal;
  37. color: $--color-text-regular;
  38. cursor: text;
  39. }
  40. }
  41. .el-breadcrumb__separator {
  42. display: none;
  43. }
  44. }
  45. }
  46. }