wizard_custom_admin.scss 1.8 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 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. .remove {
  60. margin-right: 10px;
  61. }
  62. }
  63. .wizard-column-contents {
  64. position: relative;
  65. }
  66. .wizard-custom-step {
  67. display: inline-block;
  68. margin-bottom: 20px;
  69. padding: 15px;
  70. background-color: dark-light-diff($primary, $secondary, 96%, -65%);
  71. }
  72. .step-message {
  73. position: absolute;
  74. top: 0;
  75. left: 0;
  76. right: 0;
  77. height: 0;
  78. line-height: 0;
  79. text-align: center;
  80. transition: all .2s;
  81. &.success {
  82. height: 60px;
  83. line-height: 60px;
  84. background-color: $success;
  85. color: $secondary;
  86. }
  87. &.error {
  88. height: 60px;
  89. line-height: 60px;
  90. background-color: $danger;
  91. color: $secondary;
  92. }
  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. }