wizard_custom.scss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  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. }
  30. .wizard-step-form .wizard-btn {
  31. display: block;
  32. margin: 10px 0;
  33. }
  34. .wizard-column .wizard-field .input-area {
  35. margin: 0.5em 0;
  36. }
  37. }
  38. .step-message {
  39. position: absolute;
  40. top: 0;
  41. left: 0;
  42. right: 0;
  43. height: 0;
  44. line-height: 0;
  45. text-align: center;
  46. transition: all .2s;
  47. &.success {
  48. height: 60px;
  49. line-height: 60px;
  50. background-color: #009900;
  51. color: #ffffff;
  52. }
  53. &.error {
  54. height: 60px;
  55. line-height: 60px;
  56. background-color: #e45735;
  57. color: #ffffff;
  58. }
  59. }
  60. .p-list-box {
  61. max-width: 550px;
  62. position: relative;
  63. margin: 10px 0;
  64. .spinner {
  65. position: absolute;
  66. right: 50%;
  67. top: 50%;
  68. }
  69. .p-text {
  70. margin-bottom: 5px;
  71. }
  72. ul {
  73. border: 1px solid #e9e9e9;
  74. padding: 0;
  75. margin: 0;
  76. list-style: none;
  77. height: 95px;
  78. overflow: scroll;
  79. }
  80. li {
  81. padding: 6px 12px;
  82. cursor: pointer;
  83. background-color: #fff;
  84. &:hover, &.selected {
  85. background-color: #eee;
  86. }
  87. i {
  88. margin-right: 5px;
  89. }
  90. }
  91. .no-results {
  92. padding: 15px;
  93. }
  94. .default {
  95. margin: 0 auto;
  96. top: 50%;
  97. transform: translateY(-50%);
  98. position: absolute;
  99. width: 100%;
  100. text-align: center;
  101. color: #919191;
  102. }
  103. }