0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-09-20 07:41:11 +02:00
discourse-custom-wizard/assets/stylesheets/wizard/custom/wizard.scss
Angus McLeod ce3d2ced55 COMPATIBILITY: Various core file changes
The completion of the move to ember-cli in core requires a move to an independent asset pipeline. The wizard app itself will be upgraded to ember-cli when I have time. See further:
- fcb4e5a1a1
- 1b4692039e
- a69b914710
2022-06-22 09:14:55 +02:00

76 Zeilen
1,3 KiB
SCSS

body.custom-wizard {
background: var(--secondary);
color: var(--primary);
font-size: 1.1em;
padding: 1.5em 0;
.wizard-column {
background-color: var(--secondary);
margin: 0 auto;
.wizard-field .input-area {
margin: 0.5em 0;
}
.wizard-column-contents h1 {
margin: 0;
}
.wizard-footer {
background-color: var(--secondary);
}
}
.wizard-buttons > a,
.wizard-buttons > button,
.spinner {
display: inline-block;
vertical-align: middle;
}
.spinner.small {
margin-right: 10px;
}
.wizard-column .wizard-btn {
color: var(--primary);
background: var(--primary-low);
cursor: pointer;
&.primary,
&.next {
color: var(--secondary);
background: var(--tertiary);
}
}
.wizard-column .wizard-step-footer button.wizard-btn.done,
.wizard-column .wizard-step-footer button.wizard-btn.finish {
color: var(--secondary);
background-color: var(--success);
}
.wizard-column .action-link {
color: var(--tertiary);
}
}
.no-access-gutter {
margin-top: 10px;
display: flex;
justify-content: flex-end;
}
/* IE11 hacks */
@media all and (-ms-high-contrast: none) {
body.custom-wizard {
div.wizard-step-contents {
display: block;
}
div.wizard-progress {
visibility: hidden;
}
}
}