wizard_custom_admin.scss 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  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. }
  47. &.full {
  48. width: 100%;
  49. }
  50. label {
  51. margin: 5px 0;
  52. }
  53. }
  54. .select-box-kit-header {
  55. height: initial;
  56. }
  57. .buttons .error {
  58. color: $danger;
  59. .fa {
  60. margin-right: 5px;
  61. }
  62. }
  63. .buttons .remove {
  64. float: right;
  65. }
  66. }
  67. .wizard-links {
  68. margin-bottom: 20px;
  69. ul {
  70. margin: 0;
  71. padding: 0;
  72. list-style: none;
  73. display: inline-block;
  74. li {
  75. display: inline-block;
  76. margin-bottom: 7px;
  77. margin-right: 7px;
  78. }
  79. }
  80. .sortable-placeholder {
  81. height: 30px;
  82. width: 100px;
  83. display: inline-block;
  84. vertical-align: top;
  85. background-color: $primary-low;
  86. margin-right: 10px;
  87. margin-left: 3px;
  88. }
  89. }
  90. .wizard-column-contents {
  91. position: relative;
  92. }
  93. .wizard-custom-step {
  94. display: inline-block;
  95. margin-bottom: 20px;
  96. padding: 15px;
  97. background-color: dark-light-diff($primary, $secondary, 96%, -65%);
  98. }
  99. .wizard-dropdown-choices {
  100. padding: 15px;
  101. margin-bottom: 20px;
  102. background-color: $secondary;
  103. .wizard-header:not(.underline) {
  104. margin-top: 15px;
  105. }
  106. }
  107. .custom-input {
  108. margin: 5px 0;
  109. > * {
  110. margin-bottom: 0 !important;
  111. margin-right: 5px;
  112. }
  113. .select-box-kit {
  114. width: 150px !important;
  115. }
  116. }
  117. .setting .add-custom-input {
  118. margin-top: 5px;
  119. }
  120. .admin-contents .wizard-submissions {
  121. padding: 0 20px;
  122. display: inline-block;
  123. overflow: scroll;
  124. table {
  125. margin-top: 0;
  126. }
  127. }
  128. .wizard-field-composer textarea {
  129. width: 100%;
  130. min-height: 150px;
  131. }