2026-02-21 00:19:04 +01:00
|
|
|
/* Loading spinner overlay */
|
|
|
|
|
.files-loading-spinner {
|
2026-04-07 22:48:59 +02:00
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
padding: 80px 20px;
|
|
|
|
|
gap: 16px;
|
|
|
|
|
grid-column: 1 / -1;
|
2026-02-21 00:19:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.files-loading-spinner .spinner {
|
2026-04-07 22:48:59 +02:00
|
|
|
width: 36px;
|
|
|
|
|
height: 36px;
|
|
|
|
|
border: 3px solid #e2e8f0;
|
|
|
|
|
border-top-color: #ff5e3a;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
animation: spin 0.7s linear infinite;
|
2026-02-21 00:19:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes spin {
|
2026-04-07 22:48:59 +02:00
|
|
|
to {
|
|
|
|
|
transform: rotate(360deg);
|
|
|
|
|
}
|
2026-02-21 00:19:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.files-loading-spinner span {
|
2026-04-07 22:48:59 +02:00
|
|
|
font-size: 14px;
|
|
|
|
|
color: #a0aec0;
|
|
|
|
|
font-weight: 500;
|
2026-02-21 00:19:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.dropzone {
|
2026-04-07 22:48:59 +02:00
|
|
|
border: 2px dashed #ddd;
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
padding: 20px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
margin: 20px 0;
|
|
|
|
|
color: #666;
|
|
|
|
|
display: none;
|
2026-02-21 00:19:04 +01:00
|
|
|
}
|
|
|
|
|
|
2026-03-05 13:15:34 +01:00
|
|
|
.dropzone-icon {
|
2026-04-07 22:48:59 +02:00
|
|
|
font-size: 32px;
|
|
|
|
|
margin-bottom: 10px;
|
2026-03-05 13:15:34 +01:00
|
|
|
}
|
|
|
|
|
|
2026-02-21 00:19:04 +01:00
|
|
|
.dropzone.active {
|
2026-04-07 22:48:59 +02:00
|
|
|
border-color: #ff5e3a;
|
|
|
|
|
background-color: rgba(255, 94, 58, 0.05);
|
2026-02-21 00:19:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.upload-progress {
|
2026-04-07 22:48:59 +02:00
|
|
|
margin-top: 15px;
|
|
|
|
|
width: 100%;
|
|
|
|
|
display: none;
|
2026-02-21 00:19:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.progress-bar {
|
2026-04-07 22:48:59 +02:00
|
|
|
background-color: #f0f0f0;
|
|
|
|
|
height: 6px;
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
overflow: hidden;
|
2026-02-21 00:19:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.progress-fill {
|
2026-04-07 22:48:59 +02:00
|
|
|
height: 100%;
|
|
|
|
|
background-color: #ff5e3a;
|
|
|
|
|
width: 0%;
|
|
|
|
|
transition: width 0.3s;
|
2026-02-21 00:19:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[data-theme="dark"] .dropzone {
|
2026-04-07 22:48:59 +02:00
|
|
|
border-color: #475569;
|
|
|
|
|
color: #94a3b8;
|
|
|
|
|
background-color: #0f172a;
|
2026-02-21 00:19:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[data-theme="dark"] .progress-bar {
|
2026-04-07 22:48:59 +02:00
|
|
|
background-color: #334155;
|
2026-02-21 00:19:04 +01:00
|
|
|
}
|