steps.scss 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. .clearfix {
  2. zoom: 1
  3. }
  4. .clearfix:after {
  5. display: block;
  6. height: 0;
  7. clear: both;
  8. content: "";
  9. visibility: hidden;
  10. }
  11. .nut-steps {}
  12. .nut-step {
  13. position: relative;
  14. font-size: 14px;
  15. color: #999;
  16. .nut-step-line {
  17. position: absolute;
  18. top: 0;
  19. left: 14px;
  20. height: 100%;
  21. width: 1px;
  22. }
  23. .nut-step-index {
  24. position: relative;
  25. z-index: 99;
  26. float: left;
  27. width: 26px;
  28. height: 26px;
  29. font-size: 14px;
  30. line-height: 26px;
  31. text-align: center;
  32. border-radius: 50%;
  33. }
  34. .nut-step-main {
  35. padding-left: 40px;
  36. .nut-step-title {
  37. line-height: 28px;
  38. font-weight: 600;
  39. }
  40. .nut-step-content {
  41. padding-bottom: 10px;
  42. line-height: 20px;
  43. font-size: 12px;
  44. }
  45. }
  46. &.nut-step-last {
  47. .nut-step-line {
  48. display: none;
  49. }
  50. }
  51. &.nut-step-status- {
  52. &wait {
  53. .nut-step-line {
  54. background: #ccc;
  55. }
  56. .nut-step-index {
  57. color: #999;
  58. border: 1px solid #ccc;
  59. background: #ffffff;
  60. }
  61. }
  62. &finish {
  63. .nut-step-line {
  64. background: mix($primary-color , #0f0, 50%);
  65. }
  66. .nut-step-index {
  67. border: 1px solid mix($primary-color , #0f0, 50%);
  68. background: #ffffff;
  69. color: mix($primary-color , #0f0, 50%);
  70. }
  71. }
  72. &process {
  73. .nut-step-line {
  74. background: #ccc;
  75. }
  76. .nut-step-main {
  77. color: #666;
  78. }
  79. .nut-step-index {
  80. border: 1px solid mix($primary-color , #0f0, 50%);
  81. background: mix($primary-color , #0f0, 50%);
  82. color: #ffffff;
  83. }
  84. }
  85. &error {
  86. .nut-step-line {
  87. background: #ccc;
  88. }
  89. .nut-step-main {
  90. color: $primary-color;
  91. }
  92. .nut-step-index {
  93. border: 1px solid $primary-color;
  94. background: #ffffff;
  95. color: $primary-color;
  96. }
  97. }
  98. }
  99. }