added file screen

This commit is contained in:
2026-09-02 13:20:29 +03:00
parent f83b7efcf1
commit dfc71c0130
3 changed files with 190 additions and 9 deletions
+30
View File
@@ -88,7 +88,37 @@ table.data tr.header-row td { font-weight: 700; text-decoration: underline; }
background: #e7e0d2; font-size: 0.75rem;
}
.status.ready { background: #d7efe4; }
.status.parsing { background: #dbeafe; }
.status.error { background: #f5d5d5; }
.upload-panel {
border: 1px solid var(--line);
border-radius: 8px;
padding: 0.75rem 0.9rem;
background: #fff;
}
.upload-panel.processing { border-color: #7eb8d4; background: #f0f8fc; }
.upload-panel.done { border-color: var(--ok); background: #eef8f3; }
.progress {
height: 10px;
border-radius: 999px;
background: #e7e0d2;
overflow: hidden;
margin: 0.5rem 0;
}
.progress > span {
display: block;
height: 100%;
background: linear-gradient(90deg, var(--accent), #3a9b82);
transition: width 0.15s ease;
}
.progress.indeterminate > span {
width: 35% !important;
animation: progress-slide 1.2s ease-in-out infinite;
}
@keyframes progress-slide {
0% { transform: translateX(-120%); }
100% { transform: translateX(320%); }
}
.error { color: var(--danger); }
@media (max-width: 960px) {
.grid.two { grid-template-columns: 1fr; }