wizard_custom_admin.scss 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238
  1. .wizards-nav-button {
  2. @extend .nav-pills;
  3. float: left;
  4. }
  5. .wizard-list {
  6. float: left;
  7. width: 250px;
  8. }
  9. .new-wizard {
  10. margin-top: 15px;
  11. }
  12. .wizard-header {
  13. font-size: 1.4em;
  14. margin-bottom: 15px;
  15. &.medium {
  16. font-size: 1.2em;
  17. }
  18. &.small {
  19. font-size: 1em;
  20. margin-bottom: 5px;
  21. }
  22. &.underline {
  23. text-decoration: underline;
  24. }
  25. }
  26. .content-list + .content {
  27. overflow: hidden;
  28. }
  29. .admin-wizard.settings {
  30. margin-left: 30px;
  31. margin-right: 30px;
  32. .setting {
  33. display: inline-block;
  34. vertical-align: top;
  35. width: 49%;
  36. .setting-label {
  37. width: 90px;
  38. }
  39. .setting-value {
  40. label {
  41. font-size: 0.85em;
  42. }
  43. span {
  44. font-size: 0.929em;
  45. }
  46. button {
  47. margin-top: 5px;
  48. display: block;
  49. }
  50. .d-editor {
  51. width: 100%;
  52. .d-editor-input {
  53. height: 100px;
  54. }
  55. button {
  56. margin: 0;
  57. }
  58. }
  59. }
  60. &.full {
  61. width: 100%;
  62. .setting-value {
  63. width: initial;
  64. overflow: hidden;
  65. float: none;
  66. }
  67. }
  68. label {
  69. margin: 5px 0;
  70. }
  71. }
  72. .select-box-kit-header {
  73. height: initial;
  74. }
  75. .buttons .error {
  76. color: $danger;
  77. .fa {
  78. margin-right: 5px;
  79. }
  80. }
  81. .buttons .remove {
  82. float: right;
  83. }
  84. }
  85. .wizard-links {
  86. margin-bottom: 20px;
  87. ul {
  88. margin: 0;
  89. padding: 0;
  90. list-style: none;
  91. display: inline-block;
  92. li {
  93. display: inline-block;
  94. margin-bottom: 7px;
  95. margin-right: 7px;
  96. }
  97. }
  98. .sortable-placeholder {
  99. height: 30px;
  100. width: 100px;
  101. display: inline-block;
  102. vertical-align: top;
  103. background-color: $primary-low;
  104. margin-right: 10px;
  105. margin-left: 3px;
  106. }
  107. }
  108. .wizard-column-contents {
  109. position: relative;
  110. }
  111. .wizard-custom-step {
  112. display: inline-block;
  113. margin-bottom: 20px;
  114. padding: 15px;
  115. background-color: dark-light-diff($primary, $secondary, 96%, -65%);
  116. }
  117. .wizard-dropdown-choices {
  118. padding: 15px;
  119. margin-bottom: 20px;
  120. background-color: $secondary;
  121. .wizard-header:not(.underline) {
  122. margin-top: 15px;
  123. }
  124. }
  125. .custom-input {
  126. margin: 5px 0;
  127. > * {
  128. margin-bottom: 0 !important;
  129. margin-right: 5px;
  130. }
  131. .select-box-kit {
  132. width: 150px !important;
  133. }
  134. }
  135. .setting .add-custom-input {
  136. margin-top: 5px;
  137. }
  138. .admin-contents .wizard-submissions {
  139. padding: 0 20px;
  140. display: inline-block;
  141. overflow: scroll;
  142. table {
  143. margin-top: 0;
  144. }
  145. }
  146. .wizard-field-composer textarea {
  147. width: 100%;
  148. min-height: 150px;
  149. }
  150. .next-session-time-modal {
  151. text-align: center;
  152. .date-time-card {
  153. width: 270px;
  154. padding: 10px 20px;
  155. text-align: left;
  156. }
  157. .modal-date-time-set{
  158. padding-top: 3px;
  159. padding-bottom: 4px;
  160. display: flex;
  161. flex-direction: row;
  162. .modal-date-area{
  163. order: 1;
  164. }
  165. .modal-time-area{
  166. order: 2;
  167. margin-left: 10px;
  168. .modal-time{
  169. width: 127px;
  170. }
  171. }
  172. }
  173. .ui-timepicker-input {
  174. width: 119px;
  175. text-align: center;
  176. }
  177. .date-picker{
  178. width: 121px;
  179. }
  180. .pika-single {
  181. position: relative !important;
  182. .pika-lendar {
  183. border: 1px solid #eee;
  184. padding: 14px;
  185. margin: 0;
  186. float: none;
  187. width: auto;
  188. }
  189. }
  190. }