wizard_custom_admin.scss 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  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. text-decoration: underline;
  21. margin-bottom: 5px;
  22. }
  23. }
  24. .content-list + .content {
  25. overflow: hidden;
  26. }
  27. .admin-wizard.settings {
  28. margin-left: 30px;
  29. margin-right: 30px;
  30. .setting {
  31. display: inline-block;
  32. vertical-align: top;
  33. width: 49%;
  34. .setting-label {
  35. width: 90px;
  36. }
  37. .setting-value span {
  38. font-size: 0.929em;
  39. }
  40. &.full {
  41. width: 100%;
  42. }
  43. label {
  44. margin: 5px 0;
  45. }
  46. }
  47. .buttons .error {
  48. color: $danger;
  49. .fa {
  50. margin-right: 5px;
  51. }
  52. }
  53. .buttons .remove {
  54. float: right;
  55. }
  56. }
  57. .wizard-links {
  58. margin-bottom: 20px;
  59. ul {
  60. margin: 0;
  61. padding: 0;
  62. list-style: none;
  63. display: inline-block;
  64. li {
  65. display: inline-block;
  66. margin-bottom: 7px;
  67. margin-right: 7px;
  68. }
  69. }
  70. .sortable-placeholder {
  71. height: 30px;
  72. width: 100px;
  73. display: inline-block;
  74. vertical-align: top;
  75. background-color: $primary-low;
  76. margin-right: 10px;
  77. margin-left: 3px;
  78. }
  79. }
  80. .wizard-column-contents {
  81. position: relative;
  82. }
  83. .wizard-custom-step {
  84. display: inline-block;
  85. margin-bottom: 20px;
  86. padding: 15px;
  87. background-color: dark-light-diff($primary, $secondary, 96%, -65%);
  88. }
  89. .wizard-dropdown-choices {
  90. padding: 15px 15px 0 15px;
  91. margin-bottom: 20px;
  92. background-color: $secondary;
  93. }
  94. .setting .custom-input {
  95. display: inline-block;
  96. }
  97. .wizard-submissions {
  98. padding: 0 20px;
  99. display: inline-block;
  100. overflow: scroll;
  101. }
  102. .wizard-field-composer textarea {
  103. width: 100%;
  104. min-height: 150px;
  105. }