81eddb2b5d
* Rearrange fields * Autocomplete title * Fix class position * Hide deposit behind advanced settings * Redesign additional options * Redesign price section * Update price section * Redesign tags section * Fix title edit * Make with dynamic * Redesign thumbnail section * Redesign description section * Resedign file section * Polish sections * Adjust help text * Clear title on form reset * Adjust price section * Fix help color in light theme * Polish * Mobile adjustments * More mobile adjustments * Remove border-bottom from publish rows * Redesign date section * Adjust some details * Adjust clear button * Adjust channel selector on mobile * Adjust post save button position * Adjust browse button color * Adjust channel picker on mobile * Eenable announcement page * Remove file title, remove space, redesign licence section * Fix edit form, existing claim warning, missing title warning * Adjust light theme * Adjust icon collor in button
67 lines
911 B
SCSS
67 lines
911 B
SCSS
.spinner {
|
|
width: 50px;
|
|
height: 40px;
|
|
|
|
font-size: 10px;
|
|
margin: var(--spacing-s);
|
|
text-align: center;
|
|
|
|
.rect {
|
|
width: 6px;
|
|
height: 100%;
|
|
|
|
animation: sk-stretchdelay 1.2s infinite ease-in-out;
|
|
display: inline-block;
|
|
margin: 0 2px;
|
|
|
|
&.rect2 {
|
|
animation-delay: -1.1s;
|
|
}
|
|
|
|
&.rect3 {
|
|
animation-delay: -1s;
|
|
}
|
|
|
|
&.rect4 {
|
|
animation-delay: -0.9s;
|
|
}
|
|
|
|
&.rect5 {
|
|
animation-delay: -0.8s;
|
|
}
|
|
}
|
|
}
|
|
|
|
.spinner--dark {
|
|
.rect {
|
|
background-color: var(--color-spinner-dark);
|
|
}
|
|
}
|
|
|
|
.spinner--light {
|
|
.rect {
|
|
background-color: var(--color-spinner-light);
|
|
}
|
|
}
|
|
|
|
.spinner--small {
|
|
height: 10px;
|
|
display: inline-block;
|
|
|
|
.rect {
|
|
width: 3px;
|
|
}
|
|
}
|
|
|
|
.spinnerArea--centered {
|
|
text-align: center;
|
|
}
|
|
|
|
.button--primary {
|
|
.spinner {
|
|
height: 30px;
|
|
.rect {
|
|
background-color: var(--color-primary-contrast);
|
|
}
|
|
}
|
|
}
|