index.css 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. @import '../common/index.css';
  2. .van-progress {
  3. position: relative;
  4. height: 4px;
  5. height: var(--progress-height, 4px);
  6. border-radius: 4px;
  7. border-radius: var(--progress-height, 4px);
  8. background: #ebedf0;
  9. background: var(--progress-background-color, #ebedf0);
  10. }
  11. .van-progress__portion {
  12. position: absolute;
  13. left: 0;
  14. height: 100%;
  15. border-radius: inherit;
  16. background: #1989fa;
  17. background: var(--progress-color, #1989fa);
  18. }
  19. .van-progress__pivot {
  20. position: absolute;
  21. top: 50%;
  22. right: 0;
  23. box-sizing: border-box;
  24. min-width: 2em;
  25. text-align: center;
  26. word-break: keep-all;
  27. border-radius: 1em;
  28. -webkit-transform: translateY(-50%);
  29. transform: translateY(-50%);
  30. color: #fff;
  31. color: var(--progress-pivot-text-color, #fff);
  32. padding: 0 5px;
  33. padding: var(--progress-pivot-padding, 0 5px);
  34. font-size: 10px;
  35. font-size: var(--progress-pivot-font-size, 10px);
  36. line-height: 1.6;
  37. line-height: var(--progress-pivot-line-height, 1.6);
  38. background-color: #1989fa;
  39. background-color: var(--progress-pivot-background-color, #1989fa);
  40. }