wizard_custom.scss 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  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. }
  55. .step-message {
  56. position: absolute;
  57. top: 0;
  58. left: 0;
  59. right: 0;
  60. height: 0;
  61. line-height: 0;
  62. text-align: center;
  63. transition: all .2s;
  64. &.success {
  65. height: 60px;
  66. line-height: 60px;
  67. background-color: #009900;
  68. color: #ffffff;
  69. }
  70. &.error {
  71. height: 60px;
  72. line-height: 60px;
  73. background-color: #e45735;
  74. color: #ffffff;
  75. }
  76. }
  77. .p-list-box {
  78. max-width: 550px;
  79. position: relative;
  80. margin: 10px 0;
  81. .spinner {
  82. position: absolute;
  83. right: 50%;
  84. top: 50%;
  85. }
  86. .p-text {
  87. margin-bottom: 5px;
  88. }
  89. ul {
  90. border: 1px solid #e9e9e9;
  91. padding: 0;
  92. margin: 0;
  93. list-style: none;
  94. height: 95px;
  95. overflow: scroll;
  96. }
  97. li {
  98. padding: 6px 12px;
  99. cursor: pointer;
  100. background-color: #fff;
  101. display: flex;
  102. &:hover, &.selected {
  103. background-color: #eee;
  104. }
  105. label {
  106. flex: 1 1 auto;
  107. cursor: pointer;
  108. }
  109. i {
  110. margin-right: 5px;
  111. }
  112. }
  113. .no-results {
  114. padding: 15px;
  115. }
  116. .default {
  117. margin: 0 auto;
  118. top: 50%;
  119. transform: translateY(-50%);
  120. position: absolute;
  121. width: 100%;
  122. text-align: center;
  123. color: #919191;
  124. }
  125. }
  126. .spinner {
  127. margin: 20px auto 20px auto;
  128. position: relative;
  129. -webkit-animation: rotate-forever 1s infinite linear;
  130. animation: rotate-forever 1s infinite linear;
  131. height: 30px;
  132. width: 30px;
  133. border: 4px solid #ccc;
  134. border-right-color: transparent;
  135. border-radius: 50%;
  136. &.small {
  137. width: 10px;
  138. height: 10px;
  139. margin: 0;
  140. display: inline-block;
  141. }
  142. }
  143. @keyframes rotate-forever {
  144. 0% {
  145. transform: rotate(0deg);
  146. }
  147. 100% {
  148. transform: rotate(360deg);
  149. }
  150. }