patch.less 480 B

123456789101112131415161718192021222324252627282930
  1. .@{breadcrumb-prefix-cls} {
  2. &-link {
  3. .@{iconfont-css-prefix} + span {
  4. margin-left: 4px;
  5. }
  6. }
  7. // We introduced an extra layer.
  8. & > nz-breadcrumb-item:last-child {
  9. color: @breadcrumb-last-item-color;
  10. a {
  11. color: @breadcrumb-last-item-color;
  12. }
  13. }
  14. &-rtl {
  15. > nz-breadcrumb-item {
  16. float: right;
  17. }
  18. }
  19. }
  20. nz-breadcrumb {
  21. display: block;
  22. }
  23. nz-breadcrumb-item:last-child .@{breadcrumb-prefix-cls}-separator {
  24. display: none;
  25. }