custom_wizard.scss 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. .wizards-nav-button {
  2. @extend .nav-pills;
  3. float: left;
  4. }
  5. .new-wizard {
  6. margin-top: 15px;
  7. }
  8. .wizard-header {
  9. font-size: 1.3em;
  10. margin-bottom: 15px;
  11. &.medium {
  12. font-size: 1.1em;
  13. }
  14. &.small {
  15. font-size: 0.97em;
  16. }
  17. }
  18. .content-list + .content {
  19. overflow: hidden;
  20. }
  21. .admin-wizard.settings {
  22. margin-left: 30px;
  23. margin-right: 30px;
  24. .setting {
  25. display: inline-block;
  26. vertical-align: top;
  27. min-width: 49%;
  28. .setting-label {
  29. width: 20%;
  30. }
  31. &.full {
  32. width: 100%;
  33. .setting-label {
  34. width: 75px;
  35. }
  36. }
  37. }
  38. }
  39. .wizard-links {
  40. margin-bottom: 20px;
  41. .remove {
  42. margin-right: 10px;
  43. }
  44. }
  45. .wizard-custom-step {
  46. display: inline-block;
  47. width: 100%;
  48. margin-bottom: 20px;
  49. padding: 15px;
  50. background-color: dark-light-diff($primary, $secondary, 96%, -65%);
  51. }
  52. .wizard-dropdown-choices {
  53. margin-bottom: 25px;
  54. }
  55. .wizard-dropdown-choice {
  56. display: inline-block;
  57. }
  58. .wizard-submissions {
  59. padding: 0 20px;
  60. display: inline-block;
  61. overflow: scroll;
  62. }