wizard_custom_admin.scss 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251
  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. .setting-gutter {
  72. margin-top: 5px;
  73. }
  74. }
  75. .select-box-kit-header {
  76. height: initial;
  77. }
  78. .buttons .error {
  79. color: $danger;
  80. .fa {
  81. margin-right: 5px;
  82. }
  83. }
  84. .buttons .remove {
  85. float: right;
  86. }
  87. .custom-category {
  88. margin-top: 5px;
  89. padding: 5px;
  90. }
  91. }
  92. .wizard-links {
  93. margin-bottom: 20px;
  94. ul {
  95. margin: 0;
  96. padding: 0;
  97. list-style: none;
  98. display: inline-block;
  99. li {
  100. display: inline-block;
  101. margin-bottom: 7px;
  102. margin-right: 7px;
  103. }
  104. }
  105. .sortable-placeholder {
  106. height: 30px;
  107. width: 100px;
  108. display: inline-block;
  109. vertical-align: top;
  110. background-color: $primary-low;
  111. margin-right: 10px;
  112. margin-left: 3px;
  113. }
  114. }
  115. .wizard-column-contents {
  116. position: relative;
  117. }
  118. .wizard-custom-step {
  119. display: inline-block;
  120. margin-bottom: 20px;
  121. padding: 15px;
  122. background-color: dark-light-diff($primary, $secondary, 96%, -65%);
  123. }
  124. .wizard-dropdown-choices {
  125. padding: 15px;
  126. margin-bottom: 20px;
  127. background-color: $secondary;
  128. .wizard-header:not(.underline) {
  129. margin-top: 15px;
  130. }
  131. }
  132. .custom-input {
  133. margin: 5px 0;
  134. > * {
  135. margin-bottom: 0 !important;
  136. margin-right: 5px;
  137. }
  138. .select-box-kit {
  139. width: 150px !important;
  140. }
  141. }
  142. .setting .add-custom-input {
  143. margin-top: 5px;
  144. }
  145. .admin-contents .wizard-submissions {
  146. padding: 0 20px;
  147. display: inline-block;
  148. overflow: scroll;
  149. table {
  150. margin-top: 0;
  151. }
  152. }
  153. .wizard-field-composer textarea {
  154. width: 100%;
  155. min-height: 150px;
  156. }
  157. .next-session-time-modal {
  158. text-align: center;
  159. .date-time-card {
  160. width: 270px;
  161. padding: 10px 20px;
  162. text-align: left;
  163. }
  164. .modal-date-time-set{
  165. padding-top: 3px;
  166. padding-bottom: 4px;
  167. display: flex;
  168. flex-direction: row;
  169. .modal-date-area{
  170. order: 1;
  171. }
  172. .modal-time-area{
  173. order: 2;
  174. margin-left: 10px;
  175. .modal-time{
  176. width: 127px;
  177. }
  178. }
  179. }
  180. .ui-timepicker-input {
  181. width: 119px;
  182. text-align: center;
  183. }
  184. .date-picker{
  185. width: 121px;
  186. }
  187. .pika-single {
  188. position: relative !important;
  189. .pika-lendar {
  190. border: 1px solid #eee;
  191. padding: 14px;
  192. margin: 0;
  193. float: none;
  194. width: auto;
  195. }
  196. }
  197. }
  198. .post-builder-editor {
  199. min-height: 220px;
  200. }