wizard_custom.scss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  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. &:hover, &.selected {
  88. background-color: #eee;
  89. }
  90. i {
  91. margin-right: 5px;
  92. }
  93. }
  94. .no-results {
  95. padding: 15px;
  96. }
  97. .default {
  98. margin: 0 auto;
  99. top: 50%;
  100. transform: translateY(-50%);
  101. position: absolute;
  102. width: 100%;
  103. text-align: center;
  104. color: #919191;
  105. }
  106. }