This commit is contained in:
2026-09-07 11:39:39 +02:00
parent 59722ee255
commit d0e022484e
10 changed files with 440 additions and 30 deletions

View File

@@ -257,6 +257,63 @@ button {
background: rgba(255, 106, 53, 0.06);
}
/* Upload progress */
.upload-progress {
margin-bottom: 24px;
}
.upload-progress-row {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 8px;
}
.upload-progress-row:last-child {
margin-bottom: 0;
}
.upload-progress-name {
font-family: var(--font-mono);
font-size: 12px;
color: var(--text-muted);
width: 160px;
flex-shrink: 0;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.upload-progress-track {
flex: 1;
height: 6px;
border-radius: 3px;
background: var(--panel-alt);
border: 1px solid var(--border);
overflow: hidden;
}
.upload-progress-fill {
height: 100%;
width: 0%;
background: var(--accent);
transition: width 0.15s ease;
}
.upload-progress-fill.is-done {
background: var(--accent-teal, #3fa796);
}
.upload-progress-pct {
font-family: var(--font-mono);
font-size: 12px;
color: var(--text-muted);
width: 38px;
text-align: right;
flex-shrink: 0;
}
/* File grid */
.file-grid {
@@ -380,3 +437,88 @@ button {
border-color: var(--danger);
color: var(--danger);
}
/* Login page */
.login-wrap {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 24px;
}
.login-card {
width: 100%;
max-width: 320px;
border: 1px solid var(--border);
background: var(--panel);
border-radius: var(--radius);
padding: 28px 24px;
display: flex;
flex-direction: column;
gap: 12px;
}
.login-title {
font-size: 16px;
font-weight: 600;
margin-bottom: 6px;
}
.login-label {
font-size: 13px;
color: var(--text-muted);
}
.login-input {
background: var(--panel-alt);
border: 1px solid var(--border);
border-radius: var(--radius);
color: var(--text);
padding: 10px 12px;
font-size: 14px;
font-family: inherit;
}
.login-input:focus {
outline: none;
border-color: var(--accent);
}
.login-submit {
margin-top: 6px;
background: var(--accent);
border-color: var(--accent);
color: #14171a;
font-weight: 600;
}
.login-submit:hover {
background: var(--accent);
opacity: 0.9;
}
.login-submit:disabled {
opacity: 0.6;
cursor: default;
}
.login-error {
color: var(--danger);
font-size: 13px;
min-height: 16px;
}
.logout-link {
color: var(--text-muted);
font-size: 13px;
border: 1px solid var(--border-strong);
border-radius: var(--radius);
padding: 6px 12px;
}
.logout-link:hover {
color: var(--text);
border-color: var(--accent);
}