Files
danbooru/app/components/file_upload_component/file_upload_component.scss
evazion 5d0c14d2bd uploads: fix file upload component colors in dark mode.
Fix the file upload component blending into the background in dark mode.
2022-01-28 21:15:08 -06:00

35 lines
614 B
SCSS

.file-upload-component {
background-color: var(--file-upload-component-background-color);
form {
margin: 0;
}
progress {
height: 6px;
}
.dropzone-container {
background: var(--uploads-dropzone-background);
&.error {
background: var(--error-background-color);
}
&.success {
background: var(--success-background-color);
}
}
.dz-progress {
bottom: 0;
left: 0;
background-color: var(--uploads-dropzone-progress-bar-background-color);
.dz-upload {
background-color: var(--uploads-dropzone-progress-bar-foreground-color);
}
}
}