upload progress bar

This commit is contained in:
Toni
2026-02-09 16:27:58 +01:00
parent 3fc28af508
commit fa0c998d0f
3 changed files with 110 additions and 7 deletions

View File

@@ -246,6 +246,40 @@ header {
transform: scale(1.02);
}
/* Progress Bar */
#progress-container {
width: 100%;
background-color: var(--card-bg);
border-radius: 0.5rem;
margin-bottom: 1rem;
border: 1px solid var(--border-color);
position: relative;
height: 1.5rem;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
}
#progress-bar {
position: absolute;
left: 0;
top: 0;
height: 100%;
background-color: var(--primary-color);
width: 0%;
transition: width 0.2s;
}
#progress-text {
position: relative;
z-index: 1;
font-size: 0.8rem;
font-weight: 600;
color: white;
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
/* Modals */
.modal {
position: fixed;