progress.less 545 B

12345678910111213141516171819202122232425262728
  1. @progress-prefix-cls: ~'@{ant-prefix}-progress';
  2. .@{steps-prefix-cls}-with-progress {
  3. .@{steps-prefix-cls}-item {
  4. padding-top: 4px;
  5. .@{steps-prefix-cls}-item-tail {
  6. top: 4px !important;
  7. }
  8. }
  9. &.@{steps-prefix-cls}-horizontal .@{steps-prefix-cls}-item:first-child {
  10. padding-bottom: 4px;
  11. padding-left: 4px;
  12. }
  13. .@{steps-prefix-cls}-item-icon {
  14. position: relative;
  15. .@{progress-prefix-cls} {
  16. position: absolute;
  17. top: -5px;
  18. right: -5px;
  19. bottom: -5px;
  20. left: -5px;
  21. }
  22. }
  23. }