wizard_custom.scss 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. .custom-wizard {
  2. background-color: initial;
  3. .wizard-step-description {
  4. line-height: 1.7;
  5. ul {
  6. margin: 0;
  7. padding: 0;
  8. list-style: none;
  9. }
  10. i {
  11. margin-right: 7px;
  12. }
  13. }
  14. .wizard-column .wizard-step-banner {
  15. width: initial;
  16. max-width: 660px;
  17. }
  18. .control-group {
  19. display: inline-block;
  20. vertical-align: top;
  21. margin-right: 20px;
  22. .controls {
  23. margin: 5px 0;
  24. }
  25. input {
  26. width: 200px;
  27. line-height: 24px;
  28. }
  29. ul {
  30. padding: 0;
  31. }
  32. }
  33. .wizard-step-form .wizard-btn {
  34. display: block;
  35. margin: 10px 0;
  36. }
  37. .wizard-column .wizard-field .input-area {
  38. margin: 0.5em 0;
  39. }
  40. }
  41. .step-message {
  42. position: absolute;
  43. top: 0;
  44. left: 0;
  45. right: 0;
  46. height: 0;
  47. line-height: 0;
  48. text-align: center;
  49. transition: all .2s;
  50. &.success {
  51. height: 60px;
  52. line-height: 60px;
  53. background-color: #009900;
  54. color: #ffffff;
  55. }
  56. &.error {
  57. height: 60px;
  58. line-height: 60px;
  59. background-color: #e45735;
  60. color: #ffffff;
  61. }
  62. }
  63. .p-list-box {
  64. max-width: 550px;
  65. position: relative;
  66. margin: 10px 0;
  67. .spinner {
  68. position: absolute;
  69. right: 50%;
  70. top: 50%;
  71. }
  72. .p-text {
  73. margin-bottom: 5px;
  74. }
  75. ul {
  76. border: 1px solid #e9e9e9;
  77. padding: 0;
  78. margin: 0;
  79. list-style: none;
  80. height: 95px;
  81. overflow: scroll;
  82. }
  83. li {
  84. padding: 6px 12px;
  85. cursor: pointer;
  86. background-color: #fff;
  87. display: flex;
  88. &:hover, &.selected {
  89. background-color: #eee;
  90. }
  91. label {
  92. flex: 1 1 auto;
  93. cursor: pointer;
  94. }
  95. i {
  96. margin-right: 5px;
  97. }
  98. }
  99. .no-results {
  100. padding: 15px;
  101. }
  102. .default {
  103. margin: 0 auto;
  104. top: 50%;
  105. transform: translateY(-50%);
  106. position: absolute;
  107. width: 100%;
  108. text-align: center;
  109. color: #919191;
  110. }
  111. }
  112. .spinner {
  113. margin: 20px auto 20px auto;
  114. position: relative;
  115. -webkit-animation: rotate-forever 1s infinite linear;
  116. animation: rotate-forever 1s infinite linear;
  117. height: 30px;
  118. width: 30px;
  119. border: 4px solid #ccc;
  120. border-right-color: transparent;
  121. border-radius: 50%;
  122. &.small {
  123. width: 10px;
  124. height: 10px;
  125. margin: 0;
  126. display: inline-block;
  127. }
  128. }
  129. @keyframes rotate-forever {
  130. 0% {
  131. transform: rotate(0deg);
  132. }
  133. 100% {
  134. transform: rotate(360deg);
  135. }
  136. }