wizard_custom.scss 2.6 KB

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