wizard_custom_admin.scss 1.9 KB

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