feat: upload progressbar

This commit is contained in:
kodi
2026-03-14 07:28:31 +01:00
parent f0b04fd4ee
commit f092007998
6 changed files with 170 additions and 40 deletions
+27
View File
@@ -656,6 +656,33 @@ button:disabled {
box-shadow: var(--shadow-elevated);
}
#upload-modal .popup-card {
max-width: 320px;
padding: 12px 14px;
text-align: left;
}
.upload-modal-progress {
width: 100%;
height: 4px;
border-radius: 999px;
background: var(--color-border);
margin: 6px 0;
overflow: hidden;
}
.upload-modal-progress-bar {
height: 100%;
width: 0;
background: var(--color-accent);
transition: width 150ms ease;
}
.upload-modal-count {
font-size: 12px;
color: var(--color-text-muted);
}
.popup-meta {
color: var(--color-text-muted);
font-size: 12px;