added user feedback for actions like uploading or deleting

This commit is contained in:
2025-08-28 23:36:50 +02:00
parent c8af56f1dc
commit b6b4b720df
2 changed files with 120 additions and 6 deletions

View File

@@ -9,7 +9,7 @@ body {
}
/* Dropzone */
#dropzone {
.dropzone {
border: 2px dashed #888;
border-radius: 10px;
color: #fefefe;
@@ -20,10 +20,22 @@ body {
transition: all 0.3s ease;
}
#dropzone:hover {
.dropzone:hover {
color: #0fff50;
}
.dropzone.error {
border: 2px solid #ff4d4d;
color: #ff4d4d;
font-weight: bold;
}
.dropzone.success {
border: 2px solid #0fff50;
color: #0fff50;
font-weight: bold;
}
/* File list */
#file-list {
list-style: none;