Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-10 04:12:53 +01:00
ceef3f4bc9
* Re structure builder logic to allow for step conditionality Concerns - Performance. Look at whether the additional build in the steps controller can be reduced - Does not work if applied to the last step. - Certain conditions will not work with the first step(?) - How should this be scoped to known functionality? * Add indexes and conditions to steps and fields * Complete and add spec * Complete backend * Complete step conditionality and field indexing * Fix failing spec * Update coverage * Apply rubocop * Apply prettier * Apply prettier to wizard js * Fix schema issues created in merge * Remove setting label for force_final * Improve client wizard cache naming * Improve steps controller and spec conditionality * Improve final step attribute naming * Fix failing spec * Linting * Add one more final step test * Linting * Fix eslint issues * Apply prettier * Linting, syntax, merge and copy cleanups * Update wizard-admin.scss * Fix template linting * Rubocop fixes
90 Zeilen
1,6 KiB
SCSS
90 Zeilen
1,6 KiB
SCSS
input {
|
|
display: inline-block;
|
|
padding: 4px 10px;
|
|
margin-bottom: 9px;
|
|
font-size: 1em;
|
|
line-height: 1;
|
|
color: var(--primary);
|
|
background-color: var(--secondary);
|
|
border: 1px solid var(--primary-medium);
|
|
border-radius: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
textarea {
|
|
height: auto;
|
|
background-color: var(--secondary);
|
|
border: 1px solid var(--primary-medium);
|
|
|
|
&:focus {
|
|
border-color: var(--tertiary);
|
|
box-shadow: shadow("focus");
|
|
outline: 0;
|
|
}
|
|
}
|
|
|
|
input,
|
|
select,
|
|
textarea {
|
|
color: var(--primary);
|
|
caret-color: currentColor;
|
|
|
|
&[class*="span"] {
|
|
float: none;
|
|
margin-left: 0;
|
|
}
|
|
|
|
&[disabled],
|
|
&[readonly] {
|
|
cursor: not-allowed;
|
|
background-color: var(--primary-low);
|
|
border-color: var(--primary-low);
|
|
}
|
|
|
|
&:focus:required:invalid {
|
|
color: var(--danger);
|
|
border-color: var(--danger);
|
|
}
|
|
|
|
&:focus:required:invalid:focus {
|
|
border-color: var(--danger);
|
|
box-shadow: shadow("focus-danger");
|
|
}
|
|
|
|
&[type="checkbox"] {
|
|
margin-bottom: 0;
|
|
margin-right: 10px;
|
|
}
|
|
}
|
|
|
|
.spinner {
|
|
margin: 20px auto 20px auto;
|
|
position: relative;
|
|
-webkit-animation: rotate-forever 1s infinite linear;
|
|
animation: rotate-forever 1s infinite linear;
|
|
height: 30px;
|
|
width: 30px;
|
|
border: 4px solid var(--primary-low-mid);
|
|
border-right-color: transparent;
|
|
border-radius: 50%;
|
|
|
|
&.small {
|
|
width: 10px;
|
|
height: 10px;
|
|
margin: 0;
|
|
display: inline-block;
|
|
}
|
|
}
|
|
|
|
@keyframes rotate-forever {
|
|
0% {
|
|
transform: rotate(0deg);
|
|
}
|
|
100% {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
|
|
.body-length {
|
|
text-align: right;
|
|
}
|