Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

breadcrumb.less 649B

12345678910111213141516171819202122232425262728293031323334
  1. @breadcrumb-prefix-cls: ~"@{css-prefix}breadcrumb";
  2. .@{breadcrumb-prefix-cls} {
  3. color: #999;
  4. font-size: @font-size-base;
  5. a {
  6. color: @text-color;
  7. transition: color @transition-time @ease-in-out;
  8. &:hover {
  9. color: tint(@primary-color, 20%);
  10. }
  11. }
  12. & > span:last-child {
  13. font-weight: bold;
  14. color: @text-color;
  15. }
  16. & > span:last-child &-item-separator {
  17. display: none;
  18. }
  19. &-item-separator {
  20. margin: 0 8px;
  21. color: @border-color-base;
  22. }
  23. &-item-link {
  24. > .ivu-icon + span {
  25. margin-left: 4px;
  26. }
  27. }
  28. }