custom_wizard.scss 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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.3em;
  14. margin-bottom: 15px;
  15. &.medium {
  16. font-size: 1.1em;
  17. }
  18. &.small {
  19. font-size: 0.97em;
  20. }
  21. }
  22. .content-list + .content {
  23. overflow: hidden;
  24. }
  25. .admin-wizard.settings {
  26. margin-left: 30px;
  27. margin-right: 30px;
  28. .setting {
  29. display: inline-block;
  30. vertical-align: top;
  31. min-width: 49%;
  32. .setting-label {
  33. width: 90px;
  34. }
  35. .setting-value span {
  36. font-size: 0.929em;
  37. }
  38. &.full {
  39. width: 100%;
  40. }
  41. }
  42. }
  43. .wizard-links {
  44. margin-bottom: 20px;
  45. .remove {
  46. margin-right: 10px;
  47. }
  48. }
  49. .wizard-custom-step {
  50. display: inline-block;
  51. width: 100%;
  52. margin-bottom: 20px;
  53. padding: 15px;
  54. background-color: dark-light-diff($primary, $secondary, 96%, -65%);
  55. }
  56. .wizard-dropdown-choices {
  57. margin-bottom: 25px;
  58. }
  59. .wizard-dropdown-choice {
  60. display: inline-block;
  61. }
  62. .wizard-submissions {
  63. padding: 0 20px;
  64. display: inline-block;
  65. overflow: scroll;
  66. }
  67. .wizard-field-composer textarea {
  68. width: 100%;
  69. min-height: 150px;
  70. }