feat: half baked fw upload

This commit is contained in:
2025-08-25 09:41:56 +02:00
parent 2938b5f5fe
commit 9514bf7ac5
4 changed files with 251 additions and 0 deletions

View File

@@ -422,6 +422,43 @@ p {
color: rgba(255, 255, 255, 0.8);
}
/* Upload Status Styles */
#upload-status {
margin-top: 1rem;
padding: 1rem;
border-radius: 8px;
border: 1px solid rgba(255, 255, 255, 0.1);
}
.upload-progress {
text-align: center;
color: #ffa726;
}
.upload-success {
text-align: center;
color: #4caf50;
background: rgba(76, 175, 80, 0.1);
border: 1px solid rgba(76, 175, 80, 0.2);
padding: 0.75rem;
border-radius: 6px;
}
.upload-error {
text-align: center;
color: #f44336;
background: rgba(244, 67, 54, 0.1);
border: 1px solid rgba(244, 67, 54, 0.2);
padding: 0.75rem;
border-radius: 6px;
}
.upload-btn:disabled {
opacity: 0.6;
cursor: not-allowed;
transform: none !important;
}
.no-tasks {
text-align: center;
padding: 2rem;