123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164 |
- .wizards-nav-button {
- @extend .nav-pills;
- float: left;
- }
- .wizard-list {
- float: left;
- width: 250px;
- }
- .new-wizard {
- margin-top: 15px;
- }
- .wizard-header {
- font-size: 1.4em;
- margin-bottom: 15px;
- &.medium {
- font-size: 1.2em;
- }
- &.small {
- font-size: 1em;
- margin-bottom: 5px;
- }
- &.underline {
- text-decoration: underline;
- }
- }
- .content-list + .content {
- overflow: hidden;
- }
- .admin-wizard.settings {
- margin-left: 30px;
- margin-right: 30px;
- .setting {
- display: inline-block;
- vertical-align: top;
- width: 49%;
- .setting-label {
- width: 90px;
- }
- .setting-value {
- label {
- font-size: 0.85em;
- }
- span {
- font-size: 0.929em;
- }
- }
- &.full {
- width: 100%;
- }
- label {
- margin: 5px 0;
- }
- }
- .select-box-kit-header {
- height: initial;
- }
- .buttons .error {
- color: $danger;
- .fa {
- margin-right: 5px;
- }
- }
- .buttons .remove {
- float: right;
- }
- }
- .wizard-links {
- margin-bottom: 20px;
- ul {
- margin: 0;
- padding: 0;
- list-style: none;
- display: inline-block;
- li {
- display: inline-block;
- margin-bottom: 7px;
- margin-right: 7px;
- }
- }
- .sortable-placeholder {
- height: 30px;
- width: 100px;
- display: inline-block;
- vertical-align: top;
- background-color: $primary-low;
- margin-right: 10px;
- margin-left: 3px;
- }
- }
- .wizard-column-contents {
- position: relative;
- }
- .wizard-custom-step {
- display: inline-block;
- margin-bottom: 20px;
- padding: 15px;
- background-color: dark-light-diff($primary, $secondary, 96%, -65%);
- }
- .wizard-dropdown-choices {
- padding: 15px;
- margin-bottom: 20px;
- background-color: $secondary;
- .wizard-header:not(.underline) {
- margin-top: 15px;
- }
- }
- .custom-input {
- margin: 5px 0;
- > * {
- margin-bottom: 0 !important;
- margin-right: 5px;
- }
- .select-box-kit {
- width: 150px !important;
- }
- }
- .setting .add-custom-input {
- margin-top: 5px;
- }
- .admin-contents .wizard-submissions {
- padding: 0 20px;
- display: inline-block;
- overflow: scroll;
- table {
- margin-top: 0;
- }
- }
- .wizard-field-composer textarea {
- width: 100%;
- min-height: 150px;
- }
|