Honor the hidden state of the structured download telemetry container so its decorative separators never remain visible outside an active download.
4316 lines
92 KiB
CSS
4316 lines
92 KiB
CSS
:root {
|
|
color-scheme: dark;
|
|
--bg-primary: #0f0f0f;
|
|
--bg-main: #202020;
|
|
--bg-secondary: #242424;
|
|
--bg-card: #242424;
|
|
--bg-card-hover: #2b2b2b;
|
|
--bg-input: #1b1b1b;
|
|
--bg-raised: #2b2b2b;
|
|
--bg-active: #333436;
|
|
--border: #3d3d3d;
|
|
--border-hover: #58595c;
|
|
--text: #f5f7fa;
|
|
--text-muted: #c7c7c7;
|
|
--text-dim: #9d9d9d;
|
|
--accent: #bad0fc;
|
|
--accent-end: #d4e1fc;
|
|
--accent-ink: #101723;
|
|
--success: #75d39b;
|
|
--success-end: #9ce2b8;
|
|
--danger: #ff858c;
|
|
--warning: #f2bc68;
|
|
--link-color: #bad0fc;
|
|
--panel-shadow: none;
|
|
}
|
|
|
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
|
|
body {
|
|
font-family: 'Aptos', 'Segoe UI Variable Text', 'Bahnschrift', sans-serif;
|
|
background: var(--bg-primary);
|
|
height: 100vh;
|
|
overflow: hidden;
|
|
color: var(--text);
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
:where(button, select, option, label, .app-header, .menu-bar, .view-sidebar, .settings-sidebar, .queue-table th, .recent-files-table th, .history-table th, .resize-handle, .context-menu, .modal-header, .modal-footer, .account-card-drag-handle, .account-hoster-group-header, .account-hoster-settings-header) {
|
|
user-select: none;
|
|
}
|
|
|
|
:where(.status-badge, .health-badge, .account-status, .panel-status, .account-modal-status, .online-backup-status, .health-check-results, .account-hoster-group-meta.error, .recent-file-row.error, .history-row.error, .log-file-path-row .key-input, .log-paths-list, .log-paths-list *, #jobLogBody, .update-release-notes, .update-release-notes *, .history-link-text, .copy-toast) {
|
|
user-select: text;
|
|
}
|
|
|
|
/* Menu Bar (Datei / Einstellungen / Hilfe) */
|
|
.menu-bar {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0;
|
|
user-select: none;
|
|
font-size: 13px;
|
|
font-weight: 600;
|
|
padding: 2px 10px;
|
|
background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.06));
|
|
border-bottom: 1px solid var(--border);
|
|
flex-shrink: 0;
|
|
position: relative;
|
|
z-index: 200;
|
|
}
|
|
.menu-bar-item { position: relative; }
|
|
.menu-bar-trigger {
|
|
background: none;
|
|
border: none;
|
|
color: var(--text);
|
|
padding: 5px 12px;
|
|
cursor: pointer;
|
|
font: inherit;
|
|
font-weight: 600;
|
|
border-radius: 6px;
|
|
transition: background 0.1s;
|
|
}
|
|
.menu-bar-trigger:hover,
|
|
.menu-bar-trigger.open { background: var(--bg-card-hover); }
|
|
.menu-dropdown {
|
|
position: absolute;
|
|
top: 100%;
|
|
left: 0;
|
|
z-index: 1000;
|
|
min-width: max-content;
|
|
background: var(--bg-card);
|
|
border: 1px solid var(--border);
|
|
border-radius: 8px;
|
|
padding: 4px 0;
|
|
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
|
|
white-space: nowrap;
|
|
}
|
|
.menu-dropdown-item {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
width: 100%;
|
|
background: none;
|
|
border: none;
|
|
color: var(--text);
|
|
padding: 7px 16px;
|
|
cursor: pointer;
|
|
font: inherit;
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
text-align: left;
|
|
transition: background 0.1s;
|
|
}
|
|
.menu-dropdown-item:hover { background: var(--bg-card-hover); }
|
|
.menu-dropdown-item .shortcut {
|
|
color: var(--text-dim);
|
|
font-size: 12px;
|
|
margin-left: 24px;
|
|
white-space: nowrap;
|
|
}
|
|
.menu-separator { height: 1px; background: var(--border); margin: 4px 8px; }
|
|
.menu-submenu { position: relative; }
|
|
.menu-submenu-trigger {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
width: 100%;
|
|
background: none;
|
|
border: none;
|
|
color: var(--text);
|
|
padding: 7px 16px;
|
|
cursor: pointer;
|
|
font: inherit;
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
text-align: left;
|
|
transition: background 0.1s;
|
|
}
|
|
.menu-submenu-trigger:hover { background: var(--bg-card-hover); }
|
|
.menu-submenu-trigger::after {
|
|
content: "\25B6";
|
|
font-size: 8px;
|
|
color: var(--text-dim);
|
|
margin-left: 12px;
|
|
}
|
|
.menu-submenu-dropdown {
|
|
position: absolute;
|
|
top: -4px;
|
|
left: 100%;
|
|
z-index: 1001;
|
|
min-width: max-content;
|
|
background: var(--bg-card);
|
|
border: 1px solid var(--border);
|
|
border-radius: 8px;
|
|
padding: 4px 0;
|
|
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
|
|
}
|
|
.menu-settings-grid {
|
|
display: grid;
|
|
grid-template-columns: 1fr auto auto auto;
|
|
align-items: center;
|
|
gap: 6px 8px;
|
|
padding: 6px 16px;
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
color: var(--text);
|
|
}
|
|
.menu-spinner {
|
|
display: flex;
|
|
align-items: stretch;
|
|
border: 1px solid var(--border);
|
|
border-radius: 6px;
|
|
overflow: hidden;
|
|
height: 28px;
|
|
}
|
|
.menu-spinner.disabled { opacity: 0.45; pointer-events: none; }
|
|
.menu-spinner input[type="text"] {
|
|
width: 46px;
|
|
background: var(--bg-input);
|
|
color: var(--text);
|
|
border: none;
|
|
padding: 0 6px;
|
|
font: inherit;
|
|
font-size: 13px;
|
|
text-align: center;
|
|
outline: none;
|
|
}
|
|
.menu-spinner-arrows { display: flex; flex-direction: column; border-left: 1px solid var(--border); }
|
|
.menu-spinner-arrows button {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background: var(--bg-secondary);
|
|
border: none;
|
|
color: var(--text-dim);
|
|
cursor: pointer;
|
|
padding: 0;
|
|
width: 18px;
|
|
flex: 1;
|
|
font-size: 8px;
|
|
line-height: 1;
|
|
transition: background 0.1s;
|
|
}
|
|
.menu-spinner-arrows button:hover { background: var(--bg-card-hover); color: var(--text); }
|
|
.menu-spinner-arrows button:first-child { border-bottom: 1px solid var(--border); }
|
|
.menu-settings-grid input[type="checkbox"] {
|
|
width: 15px;
|
|
height: 15px;
|
|
accent-color: var(--accent);
|
|
cursor: pointer;
|
|
flex-shrink: 0;
|
|
}
|
|
.menu-speed-unit { color: var(--text-dim); font-size: 12px; white-space: nowrap; }
|
|
|
|
/* Tab Bar */
|
|
.tab-bar {
|
|
display: flex;
|
|
gap: 2px;
|
|
padding: 8px 16px 0;
|
|
border-bottom: 1px solid var(--border);
|
|
background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.08));
|
|
flex-shrink: 0;
|
|
position: sticky;
|
|
top: 0;
|
|
z-index: 100;
|
|
}
|
|
|
|
.tab {
|
|
padding: 10px 18px 9px;
|
|
background: transparent;
|
|
border: none;
|
|
color: var(--text-muted);
|
|
font-size: 12px;
|
|
letter-spacing: 0.04em;
|
|
text-transform: uppercase;
|
|
cursor: pointer;
|
|
border-bottom: 2px solid transparent;
|
|
transition: color 0.2s, background-color 0.2s, border-color 0.2s;
|
|
}
|
|
.tab:hover { color: var(--text); }
|
|
.tab.active { color: var(--text); border-bottom-color: var(--accent); background: rgba(255, 255, 255, 0.03); }
|
|
|
|
.version-label {
|
|
margin-left: auto;
|
|
font-size: 0.7rem;
|
|
color: var(--text-dim);
|
|
padding: 4px 8px;
|
|
align-self: center;
|
|
}
|
|
|
|
/* Update Banner */
|
|
.update-banner {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
padding: 6px 16px;
|
|
background: linear-gradient(135deg, #667eea22, #764ba222);
|
|
border-bottom: 1px solid rgba(102, 126, 234, 0.3);
|
|
font-size: 0.8rem;
|
|
color: #e0e0e0;
|
|
flex-shrink: 0;
|
|
}
|
|
.update-banner span { flex: 1; }
|
|
|
|
/* Views */
|
|
.view { display: none; flex: 1; overflow: hidden; flex-direction: column; }
|
|
.view.active { display: flex; }
|
|
|
|
/* Buttons */
|
|
.btn {
|
|
padding: 8px 16px;
|
|
border: 1px solid transparent;
|
|
border-radius: 8px;
|
|
cursor: pointer;
|
|
font-size: 12px;
|
|
font-weight: 600;
|
|
letter-spacing: 0.02em;
|
|
transition: color 0.2s, background-color 0.2s, border-color 0.2s, filter 0.2s, transform 0.2s;
|
|
}
|
|
.btn-xs { padding: 4px 10px; font-size: 11px; border-radius: 4px; }
|
|
.btn-sm { padding: 5px 12px; font-size: 12px; border-radius: 5px; }
|
|
.btn-primary { background: linear-gradient(180deg, var(--accent-end), var(--accent)); color: #092033; box-shadow: inset 0 1px 0 rgba(255,255,255,0.28); }
|
|
.btn-primary:hover { filter: brightness(1.05); transform: translateY(-1px); }
|
|
.btn-primary:disabled { opacity: 0.5; cursor: default; filter: none; }
|
|
.btn-secondary { background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.08)); color: var(--text-muted); border: 1px solid var(--border); }
|
|
.btn-secondary:hover { border-color: var(--border-hover); color: var(--text); background: rgba(255,255,255,0.05); }
|
|
.btn-success { background: linear-gradient(180deg, var(--success-end), var(--success)); color: #082616; box-shadow: inset 0 1px 0 rgba(255,255,255,0.22); }
|
|
.btn-success:hover { filter: brightness(1.05); transform: translateY(-1px); }
|
|
.btn-success:disabled { opacity: 0.5; cursor: default; filter: none; }
|
|
.btn-danger { background: linear-gradient(180deg, #ff8e74, var(--danger)); color: #fff; }
|
|
.btn-danger:hover { filter: brightness(1.05); transform: translateY(-1px); }
|
|
|
|
/* Upload Toolbar */
|
|
.upload-toolbar {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
padding: 10px 16px;
|
|
border-bottom: 1px solid var(--border);
|
|
background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.08));
|
|
flex-shrink: 0;
|
|
flex-wrap: wrap;
|
|
}
|
|
.toolbar-left { display: flex; align-items: center; gap: 6px; flex: 1; min-width: 200px; }
|
|
.toolbar-right { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
|
|
.hoster-summary { font-size: 12px; color: var(--text-muted); }
|
|
|
|
/* Health check */
|
|
.health-check-inline { display: flex; align-items: center; gap: 4px; }
|
|
.auto-check-label { display: flex; align-items: center; gap: 3px; font-size: 10px; color: var(--text-muted); cursor: pointer; }
|
|
.auto-check-label input { width: 12px; height: 12px; }
|
|
|
|
.health-check-results { display: flex; gap: 4px; padding: 0 16px; flex-wrap: wrap; flex-shrink: 0; }
|
|
.health-badge {
|
|
display: inline-flex; gap: 4px; padding: 2px 8px;
|
|
font-size: 10px; border-radius: 3px; align-items: center;
|
|
}
|
|
.health-badge.ok { background: rgba(0, 184, 148, 0.2); color: var(--success); }
|
|
.health-badge.warn { background: rgba(253, 203, 110, 0.2); color: var(--warning); }
|
|
.health-badge.error { background: rgba(231, 76, 60, 0.2); color: var(--danger); }
|
|
.health-badge.skipped { background: rgba(255,255,255,0.05); color: var(--text-dim); }
|
|
.health-tag { font-weight: 600; }
|
|
|
|
/* Drop Zone */
|
|
.upload-workspace {
|
|
flex: 1;
|
|
min-height: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.drop-zone {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex: 1;
|
|
margin: 16px;
|
|
border: 1px dashed rgba(126, 220, 255, 0.28);
|
|
border-radius: 18px;
|
|
cursor: pointer;
|
|
transition: color 0.3s, background-color 0.3s, border-color 0.3s;
|
|
color: var(--text-muted);
|
|
min-height: 200px;
|
|
background:
|
|
linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.08)),
|
|
repeating-linear-gradient(135deg, rgba(255,255,255,0.015), rgba(255,255,255,0.015) 12px, transparent 12px, transparent 24px);
|
|
box-shadow: var(--panel-shadow);
|
|
}
|
|
.drop-zone:hover, .drop-zone.drag-over { border-color: rgba(126, 220, 255, 0.6); background-color: rgba(62, 167, 255, 0.06); }
|
|
.drop-icon { font-size: 40px; margin-bottom: 8px; }
|
|
|
|
/* Queue Container */
|
|
.queue-shell {
|
|
flex: 1 1 0;
|
|
min-height: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
overflow: hidden;
|
|
}
|
|
.queue-command-bar {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 2px;
|
|
align-items: center;
|
|
padding: 4px 8px;
|
|
border-bottom: 1px solid var(--border);
|
|
background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(0,0,0,0.08));
|
|
}
|
|
.toolbar-btn {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 28px;
|
|
height: 26px;
|
|
padding: 3px;
|
|
border: 1px solid transparent;
|
|
border-radius: 3px;
|
|
background: transparent;
|
|
cursor: pointer;
|
|
color: var(--text-muted);
|
|
transition: color 0.15s, background-color 0.15s, border-color 0.15s, transform 0.15s;
|
|
}
|
|
.toolbar-btn:hover {
|
|
background: rgba(255,255,255,0.1);
|
|
border-color: rgba(255,255,255,0.15);
|
|
}
|
|
.toolbar-btn:active {
|
|
background: rgba(255,255,255,0.05);
|
|
transform: translateY(1px);
|
|
}
|
|
.toolbar-btn:disabled {
|
|
opacity: 0.35;
|
|
cursor: default;
|
|
pointer-events: none;
|
|
}
|
|
.toolbar-btn:disabled:hover {
|
|
background: transparent;
|
|
border-color: transparent;
|
|
}
|
|
.toolbar-btn svg {
|
|
display: block;
|
|
}
|
|
.toolbar-btn-danger:hover {
|
|
background: rgba(229,57,53,0.2);
|
|
border-color: rgba(229,57,53,0.3);
|
|
}
|
|
.toolbar-sep {
|
|
width: 1px;
|
|
height: 20px;
|
|
background: var(--border);
|
|
margin: 0 4px;
|
|
}
|
|
.queue-container {
|
|
flex: 1 1 0;
|
|
min-height: 0;
|
|
overflow: auto;
|
|
padding: 0;
|
|
background: rgba(255, 255, 255, 0.02);
|
|
}
|
|
|
|
/* Queue Table */
|
|
.queue-table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
font-size: 11px;
|
|
table-layout: fixed;
|
|
}
|
|
.queue-table thead {
|
|
position: sticky;
|
|
top: 0;
|
|
z-index: 5;
|
|
}
|
|
.queue-table th {
|
|
padding: 5px 8px;
|
|
text-align: left;
|
|
background: linear-gradient(180deg, #2a313b, #20252d);
|
|
color: var(--text-muted);
|
|
font-weight: 600;
|
|
font-size: 10px;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.5px;
|
|
border-bottom: 1px solid var(--border);
|
|
white-space: nowrap;
|
|
cursor: default;
|
|
}
|
|
.queue-table th.sortable { cursor: pointer; }
|
|
.queue-table th.sortable:hover { color: var(--text); }
|
|
.queue-table th { position: relative; }
|
|
|
|
.col-resizer {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
width: 6px;
|
|
height: 100%;
|
|
cursor: col-resize;
|
|
user-select: none;
|
|
z-index: 6;
|
|
background: transparent;
|
|
transition: background 0.15s;
|
|
}
|
|
.col-resizer:hover { background: rgba(102, 126, 234, 0.4); }
|
|
.col-resizer.dragging { background: rgba(102, 126, 234, 0.6); }
|
|
body.col-resizing, body.col-resizing * { cursor: col-resize !important; user-select: none !important; }
|
|
|
|
.col-filename { width: 30%; }
|
|
.col-size { width: 12%; }
|
|
.col-host { width: 12%; }
|
|
.col-status { width: 10%; }
|
|
.col-elapsed { width: 7%; }
|
|
.col-remaining { width: 7%; }
|
|
.col-speed { width: 8%; }
|
|
.col-progress { width: 14%; }
|
|
|
|
.queue-table td {
|
|
padding: 4px 8px;
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.035);
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.virtual-spacer td { padding: 0 !important; border: none !important; }
|
|
|
|
/* Queue Row States */
|
|
/* Transition only on hover-enter/leave so that status flips during a busy
|
|
upload (queued→getting-server→uploading→done) don't trigger compositor
|
|
repaints with 150ms tweens for every visible row. With 30+ rows flipping
|
|
simultaneously the overlapping transitions cost real GPU time. */
|
|
.queue-row { cursor: pointer; }
|
|
.queue-row:hover { background: rgba(255, 255, 255, 0.04); transition: background 0.15s; }
|
|
.queue-row.selected { background: rgba(102, 126, 234, 0.12) !important; }
|
|
|
|
.queue-row.status-uploading { background: rgba(102, 126, 234, 0.08); }
|
|
.queue-row.status-getting-server { background: rgba(102, 126, 234, 0.05); }
|
|
.queue-row.status-retrying { background: rgba(253, 203, 110, 0.08); }
|
|
.queue-row.status-done { background: rgba(0, 184, 148, 0.06); }
|
|
.queue-row.status-error { background: rgba(231, 76, 60, 0.1); }
|
|
.queue-row.status-aborted { background: rgba(240, 195, 108, 0.08); }
|
|
.queue-row.status-skipped { background: rgba(255, 255, 255, 0.02); opacity: 0.6; }
|
|
|
|
/* Status Badge */
|
|
.status-badge {
|
|
display: inline-block;
|
|
padding: 1px 6px;
|
|
border-radius: 3px;
|
|
font-size: 10px;
|
|
font-weight: 600;
|
|
}
|
|
.status-badge.status-preview { color: var(--text-muted); }
|
|
.status-badge.status-queued { color: var(--text-muted); background: rgba(255,255,255,0.05); }
|
|
.status-badge.status-getting-server { color: var(--accent); }
|
|
.status-badge.status-uploading { color: #5dabf7; background: rgba(93, 171, 247, 0.15); }
|
|
.status-badge.status-retrying { color: var(--warning); background: rgba(253, 203, 110, 0.15); }
|
|
.status-badge.status-done { color: var(--success); background: rgba(0, 184, 148, 0.15); }
|
|
.status-badge.status-error { color: var(--danger); background: rgba(231, 76, 60, 0.15); }
|
|
.status-badge.status-aborted { color: var(--warning); background: rgba(240, 195, 108, 0.16); }
|
|
.status-badge.status-skipped { color: var(--text-dim); }
|
|
|
|
/* Progress in table cell */
|
|
.progress-cell { display: flex; align-items: center; gap: 4px; }
|
|
.progress-bar-bg {
|
|
flex: 1;
|
|
height: 14px;
|
|
background: rgba(255, 255, 255, 0.05);
|
|
border-radius: 2px;
|
|
overflow: hidden;
|
|
}
|
|
.progress-bar-fill {
|
|
width: 100%;
|
|
height: 100%;
|
|
border-radius: 2px;
|
|
transform-origin: left center;
|
|
will-change: transform;
|
|
transition: transform 360ms linear;
|
|
}
|
|
.progress-bar-fill.status-uploading { background: linear-gradient(90deg, var(--success), var(--success-end)); }
|
|
.progress-bar-fill.status-getting-server { background: var(--accent); }
|
|
.progress-bar-fill.status-retrying { background: var(--warning); }
|
|
.progress-bar-fill.status-done { background: linear-gradient(90deg, var(--success), var(--success-end)); }
|
|
.progress-bar-fill.status-error { background: var(--danger); }
|
|
.progress-bar-fill.status-aborted { background: linear-gradient(90deg, #e0b458, #f0c36c); }
|
|
.progress-pct { font-size: 10px; color: var(--text-muted); min-width: 28px; text-align: right; }
|
|
|
|
/* Queue Actions */
|
|
.queue-actions {
|
|
display: flex;
|
|
gap: 6px;
|
|
padding: 6px 16px;
|
|
border-top: 1px solid var(--border);
|
|
background: rgba(0, 0, 0, 0.14);
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.resize-handle {
|
|
flex: 0 0 5px;
|
|
cursor: ns-resize;
|
|
background: var(--border);
|
|
position: relative;
|
|
z-index: 5;
|
|
transition: background 0.15s;
|
|
}
|
|
.resize-handle:hover, .resize-handle.dragging {
|
|
background: var(--accent);
|
|
}
|
|
.recent-files-panel {
|
|
flex: 0 0 180px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
border-top: 1px solid var(--border);
|
|
background: linear-gradient(180deg, rgba(255,255,255,0.015), rgba(0,0,0,0.12));
|
|
overflow: auto;
|
|
}
|
|
.recent-files-header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 8px;
|
|
padding: 8px 16px;
|
|
border-bottom: 1px solid var(--border);
|
|
background: rgba(0, 0, 0, 0.12);
|
|
}
|
|
.recent-tabs {
|
|
display: flex;
|
|
gap: 0;
|
|
}
|
|
.recent-tab {
|
|
padding: 4px 14px;
|
|
font-size: 12px;
|
|
font-weight: 500;
|
|
background: transparent;
|
|
border: 1px solid var(--border);
|
|
border-bottom: none;
|
|
color: var(--text-muted);
|
|
cursor: pointer;
|
|
transition: color 0.15s, background-color 0.15s, border-color 0.15s;
|
|
}
|
|
.recent-tab:first-child { border-radius: 4px 0 0 0; }
|
|
.recent-tab:last-child { border-radius: 0 4px 0 0; }
|
|
.recent-tab.active {
|
|
background: rgba(255,255,255,0.06);
|
|
color: var(--text);
|
|
border-bottom-color: transparent;
|
|
}
|
|
.recent-tab:hover:not(.active) {
|
|
background: rgba(255,255,255,0.03);
|
|
color: var(--text);
|
|
}
|
|
.recent-tab-body { display: none; flex: 1; min-height: 0; overflow: auto; }
|
|
.recent-tab-body.active { display: flex; flex-direction: column; }
|
|
.recent-files-hint {
|
|
font-size: 11px;
|
|
color: var(--text-dim);
|
|
margin-left: auto;
|
|
}
|
|
.recent-files-header #clearRecentFilesBtn {
|
|
margin-left: 8px;
|
|
}
|
|
.stats-grid {
|
|
display: flex;
|
|
gap: 32px;
|
|
padding: 12px 20px;
|
|
flex: 1;
|
|
}
|
|
.stats-col {
|
|
flex: 1;
|
|
min-width: 0;
|
|
}
|
|
.stats-col h4 {
|
|
font-size: 11px;
|
|
font-weight: 600;
|
|
color: var(--text-muted);
|
|
margin-bottom: 6px;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.04em;
|
|
}
|
|
.stats-row {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
font-size: 12px;
|
|
padding: 2px 0;
|
|
color: var(--text-dim);
|
|
}
|
|
.stats-row span:last-child {
|
|
color: var(--text);
|
|
font-variant-numeric: tabular-nums;
|
|
}
|
|
.recent-files-table-wrap {
|
|
flex: 1;
|
|
min-height: 0;
|
|
overflow: auto;
|
|
}
|
|
.recent-files-table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
font-size: 11px;
|
|
table-layout: fixed;
|
|
}
|
|
.recent-files-table th {
|
|
position: sticky;
|
|
top: 0;
|
|
z-index: 2;
|
|
padding: 6px 8px;
|
|
text-align: left;
|
|
background: linear-gradient(180deg, #2a313b, #20252d);
|
|
color: var(--text-muted);
|
|
font-weight: 600;
|
|
font-size: 10px;
|
|
text-transform: uppercase;
|
|
border-bottom: 1px solid var(--border);
|
|
}
|
|
.recent-files-table td {
|
|
padding: 5px 8px;
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.03);
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
.recent-file-row {
|
|
cursor: pointer;
|
|
transition: background 0.15s;
|
|
height: 28px;
|
|
}
|
|
.recent-file-row:hover {
|
|
background: rgba(255, 255, 255, 0.03);
|
|
}
|
|
.recent-file-row.selected { background: rgba(102, 126, 234, 0.12) !important; }
|
|
.recent-file-row.error {
|
|
color: var(--danger);
|
|
opacity: 0.75;
|
|
}
|
|
|
|
.modal-overlay {
|
|
position: fixed;
|
|
inset: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background: rgba(5, 7, 16, 0.72);
|
|
z-index: 2500;
|
|
padding: 24px;
|
|
overscroll-behavior: contain;
|
|
}
|
|
.modal-card {
|
|
width: min(560px, 100%);
|
|
max-height: min(80vh, 700px);
|
|
display: flex;
|
|
flex-direction: column;
|
|
background: linear-gradient(180deg, rgba(30, 30, 46, 0.98), rgba(20, 20, 32, 0.98));
|
|
border: 1px solid var(--border-hover);
|
|
border-radius: 16px;
|
|
box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
|
|
overflow: hidden;
|
|
}
|
|
.modal-header,
|
|
.modal-footer {
|
|
padding: 14px 16px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 12px;
|
|
}
|
|
.modal-header {
|
|
border-bottom: 1px solid var(--border);
|
|
}
|
|
.modal-header h3 {
|
|
font-size: 18px;
|
|
margin-bottom: 4px;
|
|
}
|
|
.modal-header p,
|
|
.modal-hint {
|
|
font-size: 12px;
|
|
color: var(--text-muted);
|
|
}
|
|
.modal-body {
|
|
padding: 14px 16px 10px;
|
|
overflow: auto;
|
|
}
|
|
.modal-body .settings-row { gap: 10px; }
|
|
.modal-body .key-input { min-height: 36px; }
|
|
.modal-actions-inline {
|
|
display: flex;
|
|
gap: 8px;
|
|
margin-bottom: 12px;
|
|
}
|
|
.hoster-modal-list {
|
|
display: grid;
|
|
gap: 10px;
|
|
}
|
|
.import-plan-summary {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 8px;
|
|
margin: 12px 0 0;
|
|
}
|
|
.import-plan-summary > div {
|
|
display: grid;
|
|
grid-template-columns: minmax(0, 1fr) auto;
|
|
align-items: start;
|
|
gap: 8px;
|
|
min-height: 38px;
|
|
padding: 8px 10px;
|
|
border: 1px solid var(--border);
|
|
border-radius: 8px;
|
|
background: rgba(255, 255, 255, 0.02);
|
|
}
|
|
.import-plan-summary dt {
|
|
min-width: 0;
|
|
font-size: 11px;
|
|
line-height: 1.3;
|
|
color: var(--text-muted);
|
|
}
|
|
.import-plan-summary dd {
|
|
margin: 0;
|
|
font-size: 15px;
|
|
font-weight: 700;
|
|
color: var(--text);
|
|
font-variant-numeric: tabular-nums;
|
|
}
|
|
.hoster-modal-list + .import-plan-summary + .modal-hint {
|
|
margin: 10px 0 2px;
|
|
}
|
|
.hoster-option {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
padding: 12px 14px;
|
|
border: 1px solid var(--border);
|
|
border-radius: 10px;
|
|
background: rgba(255, 255, 255, 0.02);
|
|
}
|
|
.hoster-option.selected {
|
|
border-color: rgba(102, 126, 234, 0.65);
|
|
background: rgba(102, 126, 234, 0.12);
|
|
}
|
|
.hoster-option.disabled {
|
|
opacity: 0.45;
|
|
}
|
|
.hoster-option input {
|
|
width: 16px;
|
|
height: 16px;
|
|
}
|
|
.hoster-option-main {
|
|
flex: 1;
|
|
}
|
|
.hoster-option-title {
|
|
font-size: 13px;
|
|
font-weight: 600;
|
|
}
|
|
.hoster-option-subtitle {
|
|
font-size: 11px;
|
|
color: var(--text-muted);
|
|
margin-top: 2px;
|
|
}
|
|
.icon-btn {
|
|
border: 1px solid var(--border);
|
|
background: transparent;
|
|
color: var(--text-muted);
|
|
width: 32px;
|
|
height: 32px;
|
|
border-radius: 8px;
|
|
cursor: pointer;
|
|
font-size: 20px;
|
|
line-height: 1;
|
|
}
|
|
.icon-btn:hover {
|
|
color: var(--text);
|
|
border-color: var(--border-hover);
|
|
}
|
|
|
|
/* Context Menu */
|
|
.context-menu {
|
|
position: fixed;
|
|
z-index: 1000;
|
|
background: #1e1e30;
|
|
border: 1px solid var(--border-hover);
|
|
border-radius: 6px;
|
|
padding: 4px 0;
|
|
min-width: 200px;
|
|
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
|
|
}
|
|
.ctx-item {
|
|
padding: 6px 16px;
|
|
font-size: 12px;
|
|
color: var(--text);
|
|
cursor: pointer;
|
|
transition: background 0.1s;
|
|
position: relative;
|
|
}
|
|
.ctx-item:hover { background: rgba(102, 126, 234, 0.2); }
|
|
.ctx-item-danger { color: var(--danger); }
|
|
.ctx-item-danger:hover { background: rgba(231, 76, 60, 0.2); }
|
|
.ctx-separator { height: 1px; margin: 4px 8px; background: var(--border); }
|
|
.ctx-submenu { position: relative; }
|
|
.ctx-submenu-items {
|
|
display: none;
|
|
position: absolute;
|
|
left: 100%;
|
|
top: -4px;
|
|
background: #1e1e30;
|
|
border: 1px solid var(--border-hover);
|
|
border-radius: 6px;
|
|
padding: 4px 0;
|
|
min-width: 160px;
|
|
max-width: calc(100vw - 16px);
|
|
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
|
|
}
|
|
/* Flip submenu to the left when it would overflow the viewport */
|
|
.ctx-submenu-items.flip-left { left: auto; right: 100%; }
|
|
.ctx-submenu:hover .ctx-submenu-items { display: block; }
|
|
|
|
/* Settings View */
|
|
.settings-container {
|
|
padding: 12px 14px 14px;
|
|
overflow: hidden;
|
|
flex: 1;
|
|
min-height: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 10px;
|
|
background: linear-gradient(180deg, rgba(255,255,255,0.018), transparent 26%);
|
|
}
|
|
.settings-header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 18px;
|
|
padding: 12px 14px;
|
|
border: 1px solid var(--border);
|
|
border-radius: 10px;
|
|
background: color-mix(in srgb, var(--bg-card) 94%, var(--accent) 6%);
|
|
}
|
|
.settings-header h2 { margin: 0 0 3px; font-size: 17px; }
|
|
.settings-hint { color: var(--text-muted); font-size: 11px; margin: 0; line-height: 1.45; }
|
|
.settings-hosters { flex: 1; min-height: 0; }
|
|
.settings-layout {
|
|
height: 100%;
|
|
min-height: 0;
|
|
display: grid;
|
|
grid-template-columns: 220px minmax(0, 1fr);
|
|
overflow: hidden;
|
|
border: 1px solid var(--border);
|
|
border-radius: 12px;
|
|
background: var(--bg-card);
|
|
}
|
|
.settings-sidebar {
|
|
min-height: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 10px;
|
|
padding: 14px 10px;
|
|
overflow-y: auto;
|
|
border-right: 1px solid var(--border);
|
|
background: color-mix(in srgb, var(--bg-card) 88%, var(--bg-main) 12%);
|
|
}
|
|
.settings-search-wrap { display: grid; gap: 6px; padding: 0 4px 4px; }
|
|
.settings-search-wrap > label {
|
|
color: var(--text-dim);
|
|
font-size: 10px;
|
|
font-weight: 700;
|
|
letter-spacing: 0.07em;
|
|
text-transform: uppercase;
|
|
}
|
|
.settings-search-control {
|
|
position: relative;
|
|
display: flex;
|
|
align-items: center;
|
|
height: 40px;
|
|
}
|
|
.settings-search-icon {
|
|
position: absolute;
|
|
left: 10px;
|
|
top: 50%;
|
|
width: 14px;
|
|
height: 14px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
transform: translateY(-50%);
|
|
color: var(--text-dim);
|
|
pointer-events: none;
|
|
}
|
|
.settings-search-icon svg {
|
|
display: block;
|
|
width: 14px;
|
|
height: 14px;
|
|
fill: none;
|
|
stroke: currentColor;
|
|
stroke-linecap: round;
|
|
stroke-linejoin: round;
|
|
stroke-width: 1.7;
|
|
}
|
|
#settingsSearchInput {
|
|
width: 100%;
|
|
height: 40px;
|
|
min-height: 40px;
|
|
padding: 0 10px 0 32px;
|
|
border: 1px solid var(--border);
|
|
border-radius: 8px;
|
|
background: var(--bg-input);
|
|
color: var(--text);
|
|
font: inherit;
|
|
font-size: 11px;
|
|
line-height: 18px;
|
|
}
|
|
#settingsSearchInput::placeholder { color: var(--text-dim); }
|
|
#settingsSearchInput:focus { border-color: var(--accent); outline: none; }
|
|
.settings-navigation {
|
|
position: relative;
|
|
isolation: isolate;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 3px;
|
|
}
|
|
.settings-nav-indicator {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 0;
|
|
height: 0;
|
|
z-index: 0;
|
|
border: 1px solid #444548;
|
|
border-radius: 6px;
|
|
background: var(--bg-active);
|
|
pointer-events: none;
|
|
transition: transform .22s cubic-bezier(.2, .8, .2, 1), width .22s cubic-bezier(.2, .8, .2, 1), height .22s cubic-bezier(.2, .8, .2, 1);
|
|
}
|
|
.settings-nav-button {
|
|
min-height: 35px;
|
|
padding: 8px 11px;
|
|
border: 0;
|
|
border-left: 3px solid transparent;
|
|
border-radius: 0 8px 8px 0;
|
|
background: transparent;
|
|
color: var(--text-muted);
|
|
cursor: pointer;
|
|
font: inherit;
|
|
font-size: 12px;
|
|
font-weight: 600;
|
|
text-align: left;
|
|
position: relative;
|
|
z-index: 1;
|
|
transition: background 0.14s, color 0.14s, border-color 0.14s;
|
|
}
|
|
.settings-nav-button:hover { background: var(--bg-card-hover); color: var(--text); }
|
|
.settings-nav-button.active {
|
|
border-left-color: transparent;
|
|
background: transparent;
|
|
color: var(--text);
|
|
}
|
|
.settings-nav-button[hidden] { display: none; }
|
|
.settings-search-empty { margin: 4px; color: var(--text-dim); font-size: 11px; line-height: 1.45; }
|
|
.settings-content {
|
|
min-width: 0;
|
|
min-height: 0;
|
|
padding: 18px 20px 24px;
|
|
overflow-y: auto;
|
|
background: linear-gradient(145deg, rgba(255,255,255,0.012), transparent 42%);
|
|
}
|
|
.settings-subpage { display: none; max-width: 1180px; margin: 0 auto; }
|
|
.settings-subpage.active { display: block; }
|
|
.settings-page-header { margin-bottom: 18px; }
|
|
.settings-page-header h3 { margin: 0 0 5px; color: var(--text); font-size: 18px; }
|
|
.settings-page-header p { margin: 0; color: var(--text-muted); font-size: 12px; line-height: 1.5; }
|
|
|
|
.hoster-settings-panel {
|
|
background: var(--bg-card);
|
|
border: 1px solid var(--border);
|
|
border-radius: 8px;
|
|
margin-bottom: 8px;
|
|
overflow: hidden;
|
|
}
|
|
.hoster-panel-header {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
padding: 10px 14px;
|
|
cursor: pointer;
|
|
transition: background 0.2s;
|
|
}
|
|
.hoster-panel-header:hover { background: var(--bg-card-hover); }
|
|
.panel-arrow { font-size: 10px; color: var(--text-muted); width: 12px; }
|
|
.panel-title { font-weight: 600; font-size: 13px; flex: 1; }
|
|
.panel-status { font-size: 10px; padding: 2px 8px; border-radius: 3px; }
|
|
.panel-status.active { background: rgba(0, 184, 148, 0.2); color: var(--success); }
|
|
.panel-status.inactive { background: rgba(255, 255, 255, 0.05); color: var(--text-dim); }
|
|
|
|
.hoster-panel-body { padding: 0 14px 14px; }
|
|
.settings-divider { height: 1px; background: var(--border); margin: 12px 0; }
|
|
.hoster-panel-body h4 { font-size: 12px; color: var(--text-muted); margin-bottom: 8px; font-weight: 500; }
|
|
|
|
.settings-row {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
margin-bottom: 6px;
|
|
}
|
|
.checkbox-row {
|
|
margin-bottom: 0;
|
|
}
|
|
.checkbox-row input[type="checkbox"] {
|
|
order: -1;
|
|
width: 16px;
|
|
height: 16px;
|
|
}
|
|
.settings-row label {
|
|
font-size: 12px;
|
|
color: var(--text-muted);
|
|
min-width: 130px;
|
|
flex-shrink: 0;
|
|
}
|
|
.key-input, .hs-input {
|
|
flex: 1;
|
|
padding: 6px 10px;
|
|
background: var(--bg-input);
|
|
border: 1px solid var(--border);
|
|
border-radius: 4px;
|
|
color: var(--text);
|
|
font-size: 12px;
|
|
max-width: 300px;
|
|
}
|
|
/* Checkbox-type .hs-input (e.g. per-hoster "Links in Log schreiben") must
|
|
not inherit the stretched text-input box styling above — render it as a
|
|
normal small checkbox sitting next to its label. */
|
|
.hs-input[type="checkbox"] {
|
|
flex: none;
|
|
width: 16px;
|
|
height: 16px;
|
|
max-width: none;
|
|
padding: 0;
|
|
background: none;
|
|
border: none;
|
|
}
|
|
.key-input:focus, .hs-input:focus { border-color: var(--accent); outline: none; }
|
|
.hs-input { max-width: 100px; }
|
|
select.hs-input { max-width: none; width: auto; min-width: 140px; }
|
|
.hint { font-size: 10px; color: var(--text-dim); }
|
|
.settings-subpage .settings-row {
|
|
min-height: 44px;
|
|
margin: 0 0 8px;
|
|
padding: 9px 11px;
|
|
border: 1px solid color-mix(in srgb, var(--border) 90%, transparent);
|
|
border-radius: 9px;
|
|
background: color-mix(in srgb, var(--bg-input) 62%, transparent);
|
|
}
|
|
.settings-subpage .settings-row > label { min-width: 215px; color: var(--text); font-weight: 600; }
|
|
.settings-subpage .settings-row > .key-input { max-width: none; min-width: 180px; }
|
|
.settings-subpage .settings-row > .hint { flex: 1 1 220px; line-height: 1.45; }
|
|
.settings-subpage .automation-retry-row {
|
|
display: grid;
|
|
grid-template-columns: 200px minmax(0, 1fr);
|
|
align-items: start;
|
|
column-gap: 10px;
|
|
}
|
|
.settings-subpage .automation-retry-row > label {
|
|
min-width: 0;
|
|
padding-top: 9px;
|
|
}
|
|
.settings-subpage .automation-retry-control {
|
|
display: grid;
|
|
justify-items: start;
|
|
gap: 8px;
|
|
min-width: 0;
|
|
}
|
|
.settings-subpage .automation-retry-control > .hs-input {
|
|
width: 100px;
|
|
min-width: 0;
|
|
max-width: none;
|
|
}
|
|
.settings-subpage .automation-retry-control > .hint {
|
|
margin: 0;
|
|
padding-left: 0;
|
|
line-height: 1.45;
|
|
}
|
|
.settings-subpage .settings-row-wide { flex-wrap: wrap; }
|
|
.settings-subpage .settings-row-wide > .hint { flex-basis: calc(100% - 223px); margin-left: 223px; }
|
|
.settings-section-label {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
font-size: 10px;
|
|
font-weight: 700;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.08em;
|
|
color: var(--text-muted);
|
|
margin: 20px 0 8px;
|
|
padding-bottom: 7px;
|
|
border-bottom: 1px solid var(--border);
|
|
}
|
|
.settings-page-header + .settings-section-label { margin-top: 0; }
|
|
.settings-option {
|
|
display: grid;
|
|
grid-template-columns: minmax(0, 1fr) auto;
|
|
gap: 18px;
|
|
align-items: center;
|
|
min-height: 56px;
|
|
margin-bottom: 8px;
|
|
padding: 10px 12px;
|
|
border: 1px solid color-mix(in srgb, var(--border) 90%, transparent);
|
|
border-radius: 9px;
|
|
background: color-mix(in srgb, var(--bg-input) 62%, transparent);
|
|
}
|
|
.settings-option-copy { display: grid; gap: 4px; }
|
|
.settings-option-copy label { color: var(--text); font-size: 12px; font-weight: 600; cursor: pointer; }
|
|
.settings-option-description { color: var(--text-dim); font-size: 10px; line-height: 1.45; }
|
|
.settings-option > input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--accent); cursor: pointer; }
|
|
|
|
.toggle-vis {
|
|
background: transparent;
|
|
border: 1px solid var(--border);
|
|
color: var(--text-muted);
|
|
padding: 4px 8px;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
font-size: 12px;
|
|
}
|
|
.toggle-vis:hover { border-color: var(--border-hover); }
|
|
|
|
.settings-save-row { display: flex; justify-content: flex-end; align-items: center; gap: 10px; margin: 0; }
|
|
.settings-backup-section { margin-top: 24px; border-top: 1px solid var(--border); padding-top: 16px; }
|
|
.settings-backup-buttons { display: flex; gap: 8px; }
|
|
.save-feedback { font-size: 11px; color: var(--text-dim); }
|
|
.settings-empty {
|
|
padding: 28px 16px;
|
|
border: 1px dashed var(--border);
|
|
border-radius: 12px;
|
|
text-align: center;
|
|
color: var(--text-dim);
|
|
margin-top: 12px;
|
|
}
|
|
|
|
.settings-grid-mini {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 8px;
|
|
}
|
|
.settings-subpage .settings-grid-mini .settings-row.checkbox-row {
|
|
display: grid;
|
|
grid-template-columns: minmax(0, 1fr) auto;
|
|
gap: 14px;
|
|
min-height: 48px;
|
|
margin: 0;
|
|
}
|
|
.settings-subpage .settings-grid-mini .checkbox-row label { min-width: 0; cursor: pointer; }
|
|
.settings-subpage .settings-grid-mini .checkbox-row input[type="checkbox"] { order: 2; width: 18px; height: 18px; accent-color: var(--accent); cursor: pointer; }
|
|
.settings-hoster-pointer {
|
|
margin-top: 16px;
|
|
padding: 11px 13px;
|
|
border: 1px solid color-mix(in srgb, var(--accent) 30%, var(--border));
|
|
border-radius: 9px;
|
|
background: color-mix(in srgb, var(--accent) 8%, transparent);
|
|
color: var(--text-muted);
|
|
font-size: 11px;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
/* Accounts View */
|
|
.accounts-container { padding: 16px; overflow: auto; flex: 1; background: linear-gradient(180deg, rgba(255,255,255,0.015), transparent 24%); }
|
|
.accounts-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
|
|
.accounts-header h2 { font-size: 18px; margin-bottom: 2px; }
|
|
.accounts-header-actions {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
flex-wrap: wrap;
|
|
justify-content: flex-end;
|
|
}
|
|
.accounts-auto-check {
|
|
padding: 6px 10px;
|
|
border: 1px solid var(--border);
|
|
border-radius: 8px;
|
|
background: rgba(255,255,255,0.03);
|
|
font-size: 11px;
|
|
}
|
|
.account-health-results {
|
|
padding: 0 0 12px;
|
|
}
|
|
.accounts-list { display: grid; gap: 8px; }
|
|
.accounts-list-footer { display: flex; justify-content: flex-end; margin-top: 12px; }
|
|
|
|
.account-card {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 14px;
|
|
padding: 14px 16px;
|
|
background: var(--bg-card);
|
|
border: 1px solid var(--border);
|
|
border-radius: 10px;
|
|
transition: background 0.2s;
|
|
}
|
|
.account-card:hover { background: var(--bg-card-hover); }
|
|
.account-card-info { flex: 1; min-width: 0; }
|
|
.account-card-title { font-size: 14px; font-weight: 600; }
|
|
.account-card-subtitle { font-size: 11px; color: var(--text-muted); margin-top: 2px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
|
|
.account-otp-action { display: flex; align-items: center; gap: 6px; margin-top: 8px; }
|
|
.account-otp-input { width: 150px; min-height: 28px; padding: 5px 8px; font-size: 11px; }
|
|
.account-card-actions { display: flex; gap: 6px; flex-shrink: 0; }
|
|
|
|
.account-status {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 5px;
|
|
font-size: 11px;
|
|
padding: 3px 10px;
|
|
border-radius: 4px;
|
|
font-weight: 600;
|
|
flex-shrink: 0;
|
|
}
|
|
.account-status.status-ok { background: rgba(0, 184, 148, 0.2); color: var(--success); }
|
|
.account-status.status-checking { background: rgba(253, 203, 110, 0.2); color: var(--warning); }
|
|
.account-status.status-error { background: rgba(231, 76, 60, 0.2); color: var(--danger); }
|
|
.account-status.status-warn { background: rgba(240, 195, 108, 0.2); color: var(--warning); }
|
|
.account-status.status-unchecked { background: rgba(255, 255, 255, 0.05); color: var(--text-dim); }
|
|
.account-status.status-disabled { background: rgba(255, 255, 255, 0.05); color: var(--text-muted); }
|
|
.account-card.account-disabled { opacity: 0.5; }
|
|
.account-card.account-disabled:hover { opacity: 0.7; }
|
|
|
|
.account-status-dot {
|
|
width: 7px;
|
|
height: 7px;
|
|
border-radius: 50%;
|
|
display: inline-block;
|
|
}
|
|
.status-ok .account-status-dot { background: var(--success); }
|
|
.status-checking .account-status-dot { background: var(--warning); }
|
|
.status-error .account-status-dot { background: var(--danger); }
|
|
.status-warn .account-status-dot { background: var(--warning); }
|
|
.status-unchecked .account-status-dot { background: var(--text-dim); }
|
|
|
|
.account-modal-status {
|
|
margin-top: 12px;
|
|
font-size: 12px;
|
|
min-height: 20px;
|
|
}
|
|
.account-modal-status.checking { color: var(--warning); }
|
|
.account-modal-status.ok { color: var(--success); }
|
|
.account-modal-status.error { color: var(--danger); }
|
|
|
|
/* Multi-account: drag handle, priority badge, hoster group */
|
|
.account-card-drag-handle {
|
|
cursor: grab;
|
|
font-size: 14px;
|
|
color: var(--text-dim);
|
|
padding: 2px 4px;
|
|
flex-shrink: 0;
|
|
user-select: none;
|
|
}
|
|
.account-card-drag-handle:hover { color: var(--text-muted); }
|
|
.account-card.dragging { opacity: 0.4; }
|
|
.account-card.drag-over-above { border-top: 2px solid var(--accent); }
|
|
.account-card.drag-over-below { border-bottom: 2px solid var(--accent); }
|
|
|
|
.account-hoster-settings {
|
|
border-top: 1px solid var(--border);
|
|
}
|
|
.account-hoster-settings-header {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
padding: 8px 12px;
|
|
cursor: pointer;
|
|
color: var(--text-muted);
|
|
font-size: 11px;
|
|
letter-spacing: 0.5px;
|
|
text-transform: uppercase;
|
|
transition: background 0.1s, color 0.1s;
|
|
}
|
|
.account-hoster-settings-header:hover { background: var(--bg-card-hover); color: var(--text); }
|
|
.account-hoster-settings-header .panel-arrow { font-size: 10px; color: var(--text-dim); }
|
|
.account-hoster-settings-body-inner { padding: 4px 12px 10px; }
|
|
|
|
.settings-hoster-pointer {
|
|
margin-top: 12px;
|
|
padding: 10px 14px;
|
|
font-size: 12px;
|
|
line-height: 1.5;
|
|
color: var(--text-muted);
|
|
background: rgba(62, 167, 255, 0.06);
|
|
border: 1px solid var(--border);
|
|
border-radius: 8px;
|
|
}
|
|
|
|
.account-priority-badge {
|
|
font-size: 10px;
|
|
font-weight: 500;
|
|
color: var(--text-dim);
|
|
background: rgba(255, 255, 255, 0.06);
|
|
padding: 1px 6px;
|
|
border-radius: 3px;
|
|
margin-left: 6px;
|
|
}
|
|
|
|
.account-hoster-group {
|
|
margin-bottom: 12px;
|
|
border: 1px solid var(--border);
|
|
border-radius: 6px;
|
|
background: var(--bg-card);
|
|
overflow: hidden;
|
|
}
|
|
.account-hoster-group-header {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
padding: 8px 12px;
|
|
cursor: pointer;
|
|
user-select: none;
|
|
background: var(--bg-card);
|
|
transition: background 0.1s;
|
|
}
|
|
.account-hoster-group-header:hover { background: var(--bg-card-hover); }
|
|
.account-hoster-group-title {
|
|
font-size: 12px;
|
|
font-weight: 600;
|
|
color: var(--text);
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.5px;
|
|
flex: 1;
|
|
}
|
|
.account-hoster-group-count {
|
|
font-size: 12px;
|
|
color: var(--text-muted);
|
|
font-variant-numeric: tabular-nums;
|
|
}
|
|
.account-hoster-group-meta {
|
|
font-size: 11px;
|
|
color: var(--text-muted);
|
|
padding: 1px 6px;
|
|
border-radius: 4px;
|
|
background: rgba(255,255,255,0.04);
|
|
}
|
|
.account-hoster-group-meta.error {
|
|
color: var(--danger, #e57373);
|
|
background: rgba(229, 115, 115, 0.12);
|
|
}
|
|
.account-session-paused {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
font-size: 10px;
|
|
color: #f0c36c;
|
|
background: rgba(240, 195, 108, 0.12);
|
|
padding: 1px 6px;
|
|
border-radius: 4px;
|
|
margin-left: 6px;
|
|
}
|
|
.account-session-reactivate {
|
|
background: none;
|
|
border: none;
|
|
color: inherit;
|
|
cursor: pointer;
|
|
font-size: 12px;
|
|
line-height: 1;
|
|
padding: 0 2px;
|
|
}
|
|
.account-session-reactivate:hover { color: #fff; }
|
|
.account-session-paused-card { opacity: 0.85; }
|
|
.batch-cat {
|
|
margin-bottom: 10px;
|
|
padding: 6px 8px;
|
|
border-radius: 6px;
|
|
background: rgba(255,255,255,0.03);
|
|
}
|
|
.batch-cat-head { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; font-size: 13px; }
|
|
.batch-cat-count { color: var(--text-muted); font-variant-numeric: tabular-nums; }
|
|
.batch-cat-tag { font-size: 10px; padding: 1px 6px; border-radius: 4px; background: rgba(255,255,255,0.06); color: var(--text-muted); }
|
|
.batch-cat-tag.retryable { background: rgba(76, 175, 80, 0.18); color: #a5d6a7; }
|
|
.batch-cat-list { margin: 0; padding-left: 18px; font-size: 11px; color: var(--text-muted); }
|
|
.batch-cat-list em { color: var(--text-muted); font-style: italic; }
|
|
.account-hoster-group-body-inner {
|
|
padding: 8px;
|
|
border-top: 1px solid var(--border);
|
|
}
|
|
.account-hoster-group .account-card { margin-bottom: 4px; }
|
|
.account-hoster-group .account-card:last-child { margin-bottom: 0; }
|
|
.account-status-dot.status-ok { background: #4caf50; }
|
|
.account-status-dot.status-error { background: #e57373; }
|
|
.account-status-dot.status-warn { background: #f0c36c; }
|
|
.account-status-dot.status-checking { background: #f0c36c; }
|
|
.account-status-dot.status-unchecked { background: #6c757d; }
|
|
.account-hoster-group-header .account-status-dot {
|
|
width: 8px;
|
|
height: 8px;
|
|
border-radius: 50%;
|
|
display: inline-block;
|
|
}
|
|
|
|
.account-collapse {
|
|
display: grid;
|
|
grid-template-rows: 0fr;
|
|
opacity: 0;
|
|
visibility: hidden;
|
|
transition: grid-template-rows 220ms cubic-bezier(.2, .8, .2, 1), opacity 160ms ease, visibility 0s linear 220ms;
|
|
}
|
|
|
|
.account-collapse.is-open {
|
|
grid-template-rows: 1fr;
|
|
opacity: 1;
|
|
visibility: visible;
|
|
transition-delay: 0s;
|
|
}
|
|
|
|
.account-collapse-content {
|
|
min-height: 0;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.account-hoster-group-header .panel-arrow,
|
|
.account-hoster-settings-header .panel-arrow {
|
|
display: inline-block;
|
|
transform-origin: center;
|
|
transition: transform 180ms cubic-bezier(.2, .8, .2, 1);
|
|
}
|
|
|
|
.account-hoster-group-header[aria-expanded="true"] .panel-arrow,
|
|
.account-hoster-settings-header[aria-expanded="true"] .panel-arrow {
|
|
transform: rotate(90deg);
|
|
}
|
|
|
|
.accounts-empty {
|
|
width: min(520px, 100%);
|
|
margin: clamp(56px, 12vh, 120px) auto 0;
|
|
padding: 32px;
|
|
border: 1px solid var(--border);
|
|
border-radius: 16px;
|
|
background: linear-gradient(180deg, rgba(62, 167, 255, 0.06), rgba(255, 255, 255, 0.025));
|
|
box-shadow: var(--panel-shadow);
|
|
text-align: center;
|
|
}
|
|
.accounts-empty-icon {
|
|
display: grid;
|
|
place-items: center;
|
|
width: 48px;
|
|
height: 48px;
|
|
margin: 0 auto 14px;
|
|
border-radius: 14px;
|
|
background: rgba(62, 167, 255, 0.14);
|
|
color: var(--accent-end);
|
|
font-size: 30px;
|
|
font-weight: 300;
|
|
}
|
|
.accounts-empty h3 { font-size: 17px; margin-bottom: 6px; }
|
|
.accounts-empty p { max-width: 390px; margin: 0 auto 18px; color: var(--text-muted); font-size: 13px; line-height: 1.55; }
|
|
|
|
/* History View */
|
|
.history-container { padding: 16px; overflow: auto; flex: 1; background: linear-gradient(180deg, rgba(255,255,255,0.015), transparent 24%); }
|
|
.history-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
|
|
.history-header h2 { font-size: 18px; }
|
|
.history-retention-label { font-size: 13px; line-height: 16px; color: var(--text-dim); margin-right: 2px; transform: translateY(-1px); }
|
|
.history-retention-picker {
|
|
position: relative;
|
|
min-width: 150px;
|
|
}
|
|
.btn.history-retention-trigger {
|
|
width: 100%;
|
|
min-width: 150px;
|
|
min-height: 34px;
|
|
height: 34px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 14px;
|
|
padding-inline: 11px;
|
|
color: var(--text);
|
|
font-size: 13px;
|
|
line-height: 16px;
|
|
text-align: left;
|
|
}
|
|
.history-retention-trigger[aria-expanded="true"] {
|
|
border-color: var(--accent-end);
|
|
background: var(--bg-active);
|
|
}
|
|
.history-retention-chevron {
|
|
width: 7px;
|
|
height: 7px;
|
|
flex: 0 0 auto;
|
|
border-right: 2px solid currentColor;
|
|
border-bottom: 2px solid currentColor;
|
|
transform: translateY(-2px) rotate(45deg);
|
|
transition: transform .18s ease;
|
|
}
|
|
.history-retention-trigger[aria-expanded="true"] .history-retention-chevron {
|
|
transform: translateY(2px) rotate(225deg);
|
|
}
|
|
.history-retention-menu {
|
|
position: absolute;
|
|
top: calc(100% + 6px);
|
|
left: 0;
|
|
z-index: 1200;
|
|
width: max-content;
|
|
min-width: 100%;
|
|
padding: 5px;
|
|
border: 1px solid var(--border-hover);
|
|
border-radius: 7px;
|
|
background: var(--bg-raised);
|
|
box-shadow: 0 18px 38px rgba(0, 0, 0, .38);
|
|
transform-origin: top;
|
|
}
|
|
.history-retention-option {
|
|
width: 100%;
|
|
min-height: 31px;
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 0 10px;
|
|
border: 0;
|
|
border-radius: 5px;
|
|
background: transparent;
|
|
color: var(--text-muted);
|
|
font: inherit;
|
|
font-size: 12px;
|
|
font-weight: 600;
|
|
white-space: nowrap;
|
|
cursor: pointer;
|
|
}
|
|
.history-retention-option:hover,
|
|
.history-retention-option:focus-visible {
|
|
background: var(--bg-active);
|
|
color: var(--text);
|
|
outline: none;
|
|
}
|
|
.history-retention-option[aria-selected="true"] {
|
|
background: color-mix(in srgb, var(--accent) 15%, transparent);
|
|
color: var(--text);
|
|
}
|
|
.history-cap-notice {
|
|
margin: 0 0 10px;
|
|
padding: 8px 12px;
|
|
font-size: 12px;
|
|
color: var(--text-dim);
|
|
background: rgba(255,255,255,0.03);
|
|
border: 1px solid var(--border);
|
|
border-radius: 6px;
|
|
}
|
|
|
|
.results-table, .history-table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
font-size: 12px;
|
|
}
|
|
.results-table th, .history-table th {
|
|
padding: 6px 8px;
|
|
text-align: left;
|
|
background: var(--bg-card);
|
|
color: var(--text-muted);
|
|
font-weight: 600;
|
|
font-size: 11px;
|
|
border-bottom: 1px solid var(--border);
|
|
cursor: pointer;
|
|
white-space: nowrap;
|
|
}
|
|
.results-table th.active, .history-table th.active { color: var(--text); }
|
|
.sort-indicator { margin-left: 4px; font-size: 10px; }
|
|
|
|
.history-table { table-layout: fixed; }
|
|
.history-table .col-date { width: 16%; }
|
|
.history-table .col-filename { width: 34%; }
|
|
.history-table .col-host { width: 12%; }
|
|
.history-table .col-link { width: 38%; }
|
|
.history-row {
|
|
cursor: pointer;
|
|
transition: background 0.15s;
|
|
}
|
|
.history-row:hover { background: rgba(255, 255, 255, 0.03); }
|
|
.history-row.selected { background: rgba(102, 126, 234, 0.12); }
|
|
.history-row.error { color: var(--danger); }
|
|
.history-row.skipped { color: var(--warning); }
|
|
.history-row td {
|
|
padding: 5px 8px;
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.03);
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
max-width: 300px;
|
|
}
|
|
.history-link-cell {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
min-width: 0;
|
|
}
|
|
.history-link-text {
|
|
min-width: 0;
|
|
flex: 1 1 auto;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
.history-copy-link {
|
|
flex: 0 0 auto;
|
|
width: 18px;
|
|
height: 18px;
|
|
padding: 0;
|
|
border: 1px solid var(--border);
|
|
border-radius: 4px;
|
|
background: var(--bg-secondary);
|
|
color: var(--text-muted);
|
|
font-size: 12px;
|
|
line-height: 16px;
|
|
cursor: pointer;
|
|
}
|
|
.history-copy-link:hover,
|
|
.history-copy-link:focus-visible {
|
|
color: var(--text);
|
|
border-color: var(--accent);
|
|
background: var(--bg-hover);
|
|
}
|
|
|
|
.empty-state { color: var(--text-dim); text-align: center; padding: 40px; font-size: 14px; }
|
|
|
|
/* Copy toast */
|
|
.copy-toast {
|
|
position: fixed;
|
|
bottom: 40px;
|
|
left: 50%;
|
|
transform: translateX(-50%) translateY(20px);
|
|
background: rgba(0, 184, 148, 0.9);
|
|
color: #fff;
|
|
padding: 6px 16px;
|
|
border-radius: 6px;
|
|
font-size: 12px;
|
|
opacity: 0;
|
|
pointer-events: none;
|
|
transition: opacity 0.3s, transform 0.3s;
|
|
z-index: 2000;
|
|
}
|
|
.copy-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
|
|
|
|
.startup-resume-banner {
|
|
position: fixed;
|
|
left: 50%;
|
|
bottom: 26px;
|
|
z-index: 2100;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
min-height: 42px;
|
|
padding: 7px 8px 7px 14px;
|
|
border: 1px solid var(--accent);
|
|
border-radius: 8px;
|
|
background: var(--bg-panel);
|
|
color: var(--text);
|
|
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
|
|
transform: translateX(-50%);
|
|
}
|
|
|
|
.startup-resume-banner[hidden] {
|
|
display: none;
|
|
}
|
|
|
|
/* Shutdown overlay */
|
|
.shutdown-overlay {
|
|
position: fixed;
|
|
inset: 0;
|
|
background: rgba(0, 0, 0, 0.8);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
z-index: 3000;
|
|
}
|
|
.shutdown-box {
|
|
background: var(--bg-card);
|
|
border: 1px solid var(--border-hover);
|
|
border-radius: 12px;
|
|
padding: 24px 32px;
|
|
text-align: center;
|
|
}
|
|
.shutdown-box p { margin-bottom: 16px; font-size: 16px; }
|
|
|
|
@media (max-width: 900px) {
|
|
.settings-layout { grid-template-columns: 172px minmax(0, 1fr); }
|
|
.settings-content { padding: 16px; }
|
|
.settings-subpage .settings-row { align-items: flex-start; flex-wrap: wrap; }
|
|
.settings-subpage .settings-row > label { min-width: 100%; }
|
|
.settings-subpage .settings-row-wide > .hint { flex-basis: 100%; margin-left: 0; }
|
|
.recent-files-panel {
|
|
max-height: 220px;
|
|
}
|
|
.modal-overlay {
|
|
padding: 12px;
|
|
}
|
|
.queue-command-bar {
|
|
padding-right: 12px;
|
|
}
|
|
.accounts-header {
|
|
flex-direction: column;
|
|
}
|
|
.accounts-header-actions {
|
|
justify-content: flex-start;
|
|
}
|
|
}
|
|
|
|
/* Scrollbars */
|
|
::-webkit-scrollbar { width: 8px; height: 8px; }
|
|
::-webkit-scrollbar-track { background: transparent; }
|
|
::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.1); border-radius: 4px; }
|
|
::-webkit-scrollbar-thumb:hover { background: rgba(255, 255, 255, 0.2); }
|
|
|
|
:where(button, input, select, textarea, [tabindex]):focus-visible {
|
|
outline: 2px solid var(--accent-end);
|
|
outline-offset: 2px;
|
|
}
|
|
|
|
.key-input:focus-visible,
|
|
.hs-input:focus-visible {
|
|
border-color: var(--accent);
|
|
outline: 2px solid rgba(101, 216, 255, 0.45);
|
|
outline-offset: 1px;
|
|
}
|
|
|
|
.menu-spinner input[type="text"]:focus-visible {
|
|
outline: 2px solid var(--accent-end);
|
|
outline-offset: -2px;
|
|
}
|
|
|
|
@media (prefers-reduced-motion: reduce) {
|
|
*, *::before, *::after {
|
|
scroll-behavior: auto !important;
|
|
transition-duration: 0.01ms !important;
|
|
animation-duration: 0.01ms !important;
|
|
animation-iteration-count: 1 !important;
|
|
}
|
|
|
|
.tab-indicator {
|
|
transition-duration: 280ms !important;
|
|
}
|
|
|
|
.view-sidebar-indicator,
|
|
.settings-nav-indicator {
|
|
transition-duration: 220ms !important;
|
|
}
|
|
|
|
.language-picker-indicator {
|
|
transition-duration: 240ms !important;
|
|
}
|
|
|
|
.progress-bar-fill {
|
|
transition-duration: 360ms !important;
|
|
}
|
|
|
|
.menu-opening {
|
|
animation-duration: 180ms !important;
|
|
}
|
|
|
|
.menu-closing {
|
|
animation-duration: 160ms !important;
|
|
}
|
|
|
|
.account-collapse {
|
|
transition-duration: 220ms, 160ms, 0s !important;
|
|
}
|
|
|
|
.account-hoster-group-header .panel-arrow,
|
|
.account-hoster-settings-header .panel-arrow {
|
|
transition-duration: 180ms !important;
|
|
}
|
|
}
|
|
|
|
.online-backup-panel {
|
|
display: grid;
|
|
gap: 16px;
|
|
padding: 18px;
|
|
margin-bottom: 18px;
|
|
border: 1px solid var(--border);
|
|
border-radius: 12px;
|
|
background: color-mix(in srgb, var(--bg-card) 88%, var(--accent) 12%);
|
|
}
|
|
|
|
.online-backup-panel h3 {
|
|
margin: 0 0 6px;
|
|
font-size: 15px;
|
|
}
|
|
|
|
.online-backup-panel p {
|
|
margin: 0;
|
|
color: var(--text-dim);
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.online-backup-action,
|
|
.backup-file-actions {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.online-backup-key-row {
|
|
display: grid;
|
|
grid-template-columns: minmax(170px, auto) minmax(240px, 1fr) auto;
|
|
gap: 10px;
|
|
align-items: center;
|
|
}
|
|
|
|
.online-backup-key-row label {
|
|
color: var(--text);
|
|
font-size: 12px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.online-backup-key-row .key-input {
|
|
width: 100%;
|
|
min-width: 0;
|
|
font-family: Consolas, monospace;
|
|
}
|
|
|
|
.online-backup-panel .online-backup-warning {
|
|
padding: 10px 12px;
|
|
border-radius: 8px;
|
|
background: rgba(245, 158, 11, 0.1);
|
|
color: #fbbf24;
|
|
}
|
|
|
|
.online-backup-status {
|
|
min-height: 18px;
|
|
color: var(--text-dim);
|
|
font-size: 12px;
|
|
}
|
|
|
|
.online-backup-status[data-state="success"] {
|
|
color: var(--success);
|
|
}
|
|
|
|
.online-backup-status[data-state="error"] {
|
|
color: var(--danger);
|
|
}
|
|
|
|
.online-backup-status[data-state="warning"] {
|
|
color: #fbbf24;
|
|
}
|
|
|
|
@media (max-width: 820px) {
|
|
.settings-container { overflow-y: auto; }
|
|
.settings-header { align-items: center; flex-direction: row; }
|
|
.settings-layout { height: auto; grid-template-columns: 1fr; overflow: visible; }
|
|
.settings-sidebar { overflow: visible; border-right: 0; border-bottom: 1px solid var(--border); }
|
|
.settings-navigation { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
|
|
.settings-content { overflow: visible; }
|
|
.settings-grid-mini { grid-template-columns: 1fr; }
|
|
.online-backup-key-row {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
}
|
|
|
|
.icon-sprite {
|
|
position: absolute;
|
|
width: 0;
|
|
height: 0;
|
|
overflow: hidden;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.app-header {
|
|
min-height: 48px;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
padding: 4px 8px;
|
|
background: var(--bg-primary);
|
|
border-bottom: 1px solid #242424;
|
|
flex: 0 0 auto;
|
|
position: relative;
|
|
z-index: 500;
|
|
}
|
|
|
|
.header-cluster {
|
|
height: 40px;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
padding: 0 4px;
|
|
border: 1px solid var(--border);
|
|
border-radius: 8px;
|
|
background: var(--bg-secondary);
|
|
}
|
|
|
|
.header-primary {
|
|
min-width: 0;
|
|
}
|
|
|
|
.header-utilities {
|
|
flex: 0 0 auto;
|
|
}
|
|
|
|
.local-backup-password-row {
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.local-backup-password-fields {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 10px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.local-backup-password-fields[hidden] {
|
|
display: none;
|
|
}
|
|
|
|
.upload-speed-sparkline {
|
|
width: 208px;
|
|
height: 30px;
|
|
display: grid;
|
|
grid-template-columns: minmax(0, 1fr) max-content;
|
|
align-items: center;
|
|
gap: 4px;
|
|
padding: 3px 8px;
|
|
border: 1px solid var(--border);
|
|
border-radius: 7px;
|
|
background: var(--bg-input);
|
|
transition: opacity .16s ease;
|
|
}
|
|
|
|
.upload-speed-chart {
|
|
position: relative;
|
|
min-width: 0;
|
|
height: 22px;
|
|
display: block;
|
|
}
|
|
|
|
.upload-speed-baseline {
|
|
position: absolute;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 2px;
|
|
height: 2px;
|
|
border-radius: 999px;
|
|
background: var(--success);
|
|
pointer-events: none;
|
|
}
|
|
|
|
.upload-speed-sparkline canvas {
|
|
position: relative;
|
|
z-index: 1;
|
|
width: 100%;
|
|
height: 22px;
|
|
display: block;
|
|
}
|
|
|
|
.upload-speed-sparkline strong {
|
|
color: var(--text);
|
|
font-size: 11px;
|
|
font-variant-numeric: tabular-nums;
|
|
text-align: right;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.header-spacer {
|
|
flex: 1 1 auto;
|
|
min-width: 8px;
|
|
}
|
|
|
|
.header-divider {
|
|
width: 1px;
|
|
height: 24px;
|
|
margin: 0 2px;
|
|
background: var(--border);
|
|
flex: 0 0 auto;
|
|
}
|
|
|
|
.app-brand {
|
|
height: 38px;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 9px;
|
|
padding: 0 10px 0 6px;
|
|
min-width: 0;
|
|
}
|
|
|
|
.app-brand-icon {
|
|
width: 24px;
|
|
height: 24px;
|
|
object-fit: contain;
|
|
flex: 0 0 auto;
|
|
}
|
|
|
|
.app-brand-name {
|
|
color: var(--text);
|
|
font-size: 12px;
|
|
font-weight: 700;
|
|
letter-spacing: .055em;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.tab-bar {
|
|
height: 38px;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 3px;
|
|
padding: 0;
|
|
border: 0;
|
|
background: transparent;
|
|
position: relative;
|
|
}
|
|
|
|
.tab {
|
|
width: 38px;
|
|
height: 34px;
|
|
display: grid;
|
|
place-items: center;
|
|
padding: 0;
|
|
border: 1px solid transparent;
|
|
border-radius: 6px;
|
|
background: transparent;
|
|
color: var(--text-dim);
|
|
text-transform: none;
|
|
letter-spacing: 0;
|
|
transition: color .14s, background-color .14s, border-color .14s;
|
|
}
|
|
|
|
.tab:hover {
|
|
color: var(--text);
|
|
background: var(--bg-raised);
|
|
}
|
|
|
|
.tab.active {
|
|
color: var(--accent);
|
|
border: 1px solid #46474a;
|
|
background: var(--bg-active);
|
|
}
|
|
|
|
.tab-indicator {
|
|
position: absolute;
|
|
left: 0;
|
|
bottom: 0;
|
|
width: 0;
|
|
height: 2px;
|
|
border-radius: 2px 2px 0 0;
|
|
background: var(--accent);
|
|
pointer-events: none;
|
|
transition: transform .2s cubic-bezier(.2, .8, .2, 1), width .2s cubic-bezier(.2, .8, .2, 1);
|
|
}
|
|
|
|
.top-nav-icon,
|
|
.header-action-icon,
|
|
.view-sidebar-icon,
|
|
.update-dialog-icon svg,
|
|
.update-close-button svg,
|
|
.drop-icon svg {
|
|
width: 19px;
|
|
height: 19px;
|
|
display: block;
|
|
fill: none;
|
|
stroke: currentColor;
|
|
stroke-width: 1.65;
|
|
stroke-linecap: round;
|
|
stroke-linejoin: round;
|
|
}
|
|
|
|
.top-nav-label,
|
|
.menu-label {
|
|
position: absolute;
|
|
width: 1px;
|
|
height: 1px;
|
|
padding: 0;
|
|
margin: -1px;
|
|
overflow: hidden;
|
|
clip: rect(0, 0, 0, 0);
|
|
white-space: nowrap;
|
|
border: 0;
|
|
}
|
|
|
|
.header-update-slot {
|
|
width: 0;
|
|
flex: 0 0 0;
|
|
height: 32px;
|
|
margin-right: -4px;
|
|
overflow: hidden;
|
|
opacity: 0;
|
|
visibility: hidden;
|
|
pointer-events: none;
|
|
transition: width .28s cubic-bezier(.22, 1, .36, 1), flex-basis .28s cubic-bezier(.22, 1, .36, 1), margin-right .28s cubic-bezier(.22, 1, .36, 1), opacity .18s ease, visibility 0s linear .28s;
|
|
}
|
|
|
|
.header-update-slot.is-visible {
|
|
width: 146px;
|
|
flex-basis: 146px;
|
|
margin-right: 0;
|
|
overflow: visible;
|
|
opacity: 1;
|
|
visibility: visible;
|
|
pointer-events: auto;
|
|
transition-delay: 0s;
|
|
}
|
|
|
|
.header-update-button {
|
|
position: relative;
|
|
width: 146px;
|
|
flex: 0 0 146px;
|
|
height: 32px;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 7px;
|
|
padding: 0 12px;
|
|
border: 1px solid var(--border);
|
|
border-radius: 6px;
|
|
background: var(--bg-secondary);
|
|
color: var(--text-muted);
|
|
cursor: pointer;
|
|
font: inherit;
|
|
font-size: 12px;
|
|
font-weight: 700;
|
|
opacity: 0;
|
|
transform: translateX(14px);
|
|
pointer-events: none;
|
|
transition: background-color .14s, transform .28s cubic-bezier(.22, 1, .36, 1), opacity .18s ease;
|
|
}
|
|
|
|
.header-update-slot.is-visible .header-update-button {
|
|
opacity: 1;
|
|
transform: translateX(0);
|
|
pointer-events: auto;
|
|
}
|
|
|
|
.header-update-button.update-available {
|
|
border-color: transparent;
|
|
background: var(--success);
|
|
color: #000;
|
|
}
|
|
|
|
.header-update-button::after {
|
|
content: attr(data-tooltip);
|
|
position: absolute;
|
|
top: calc(100% + 10px);
|
|
left: 50%;
|
|
right: auto;
|
|
width: max-content;
|
|
max-width: min(240px, calc(100vw - 24px));
|
|
padding: 8px 10px;
|
|
border: 1px solid var(--border);
|
|
border-radius: 6px;
|
|
background: var(--bg-raised);
|
|
color: var(--text);
|
|
box-shadow: var(--shadow-lg);
|
|
font-size: 11px;
|
|
font-weight: 600;
|
|
line-height: 1.35;
|
|
text-align: left;
|
|
white-space: normal;
|
|
opacity: 0;
|
|
pointer-events: none;
|
|
transform: translate(-50%, -3px);
|
|
transition: opacity .14s, transform .14s;
|
|
z-index: 80;
|
|
}
|
|
|
|
.header-update-button:hover::after,
|
|
.header-update-button:focus-visible::after {
|
|
opacity: 1;
|
|
transform: translate(-50%, 0);
|
|
}
|
|
|
|
.header-update-button:hover {
|
|
background: var(--bg-card-hover);
|
|
color: var(--text);
|
|
}
|
|
|
|
.header-update-button.update-available:hover {
|
|
background: var(--success-end);
|
|
color: #000;
|
|
}
|
|
|
|
.header-update-button:active {
|
|
transform: translateY(1px);
|
|
}
|
|
|
|
.header-update-button.is-checking .header-action-icon,
|
|
.header-update-button.is-downloading .header-action-icon {
|
|
animation: update-icon-pulse 1s ease-in-out infinite;
|
|
}
|
|
|
|
@keyframes update-icon-pulse {
|
|
0%, 100% { opacity: 1; transform: translateY(0); }
|
|
50% { opacity: .55; transform: translateY(2px); }
|
|
}
|
|
|
|
.menu-bar {
|
|
height: 38px;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 2px;
|
|
padding: 0;
|
|
border: 0;
|
|
background: transparent;
|
|
font-size: 12px;
|
|
position: static;
|
|
}
|
|
|
|
.menu-bar-item {
|
|
position: relative;
|
|
}
|
|
|
|
.menu-bar-trigger {
|
|
width: 34px;
|
|
height: 34px;
|
|
display: grid;
|
|
place-items: center;
|
|
padding: 0;
|
|
border: 1px solid transparent;
|
|
border-radius: 6px;
|
|
color: var(--text-dim);
|
|
}
|
|
|
|
.menu-bar-trigger:hover,
|
|
.menu-bar-trigger.open {
|
|
color: var(--text);
|
|
border-color: #46474a;
|
|
background: var(--bg-active);
|
|
}
|
|
|
|
.menu-dropdown,
|
|
.menu-submenu-dropdown {
|
|
top: calc(100% + 8px);
|
|
min-width: 230px;
|
|
padding: 6px;
|
|
border: 1px solid var(--border-hover);
|
|
border-radius: 8px;
|
|
background: var(--bg-raised);
|
|
box-shadow: 0 18px 38px rgba(0, 0, 0, .38);
|
|
}
|
|
|
|
.menu-dropdown,
|
|
.menu-submenu-dropdown {
|
|
transform-origin: top;
|
|
}
|
|
|
|
.menu-opening {
|
|
animation: menu-unfold 180ms cubic-bezier(.2, .8, .2, 1);
|
|
}
|
|
|
|
.menu-closing {
|
|
pointer-events: none;
|
|
animation: menu-fold 160ms cubic-bezier(.4, 0, .8, .2) both;
|
|
}
|
|
|
|
@keyframes menu-unfold {
|
|
from { opacity: .35; clip-path: inset(0 0 100% 0); transform: scaleY(.96); }
|
|
to { opacity: 1; clip-path: inset(0); transform: scaleY(1); }
|
|
}
|
|
|
|
@keyframes menu-fold {
|
|
from { opacity: 1; clip-path: inset(0); transform: scaleY(1); }
|
|
to { opacity: .2; clip-path: inset(0 0 100% 0); transform: scaleY(.96); }
|
|
}
|
|
|
|
.header-utilities .menu-dropdown {
|
|
left: auto;
|
|
right: 0;
|
|
}
|
|
|
|
.header-utilities [data-menu="datei"] .menu-submenu-dropdown {
|
|
top: -6px;
|
|
left: auto;
|
|
right: calc(100% + 6px);
|
|
}
|
|
|
|
.menu-dropdown-item,
|
|
.menu-submenu-trigger {
|
|
min-height: 34px;
|
|
padding: 7px 10px;
|
|
border-radius: 5px;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.menu-dropdown-item:hover,
|
|
.menu-submenu-trigger:hover {
|
|
background: var(--bg-active);
|
|
}
|
|
|
|
.menu-separator {
|
|
background: var(--border);
|
|
margin: 5px 4px;
|
|
}
|
|
|
|
.menu-settings-grid {
|
|
min-width: 310px;
|
|
padding: 8px 10px 10px;
|
|
}
|
|
|
|
.menu-spinner {
|
|
height: 32px;
|
|
border-color: var(--border-hover);
|
|
background: var(--bg-input);
|
|
}
|
|
|
|
.menu-spinner-arrows button {
|
|
background: var(--bg-secondary);
|
|
}
|
|
|
|
.version-badge {
|
|
min-width: 48px;
|
|
height: 32px;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 7px;
|
|
padding: 0 8px 0 4px;
|
|
border-radius: 6px;
|
|
color: var(--text-dim);
|
|
font-variant-numeric: tabular-nums;
|
|
}
|
|
|
|
.version-monogram {
|
|
width: 24px;
|
|
height: 24px;
|
|
display: grid;
|
|
place-items: center;
|
|
border-radius: 50%;
|
|
background: var(--bg-active);
|
|
color: var(--text);
|
|
font-size: 11px;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.version-label {
|
|
margin: 0;
|
|
padding: 0;
|
|
align-self: auto;
|
|
color: var(--text-dim);
|
|
font-size: 10px;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.update-overlay {
|
|
position: fixed;
|
|
inset: 0;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 24px;
|
|
background: rgba(0, 0, 0, .6);
|
|
z-index: 4000;
|
|
}
|
|
|
|
.update-dialog {
|
|
width: min(576px, 100%);
|
|
display: grid;
|
|
grid-template-columns: 48px minmax(0, 1fr);
|
|
gap: 0 16px;
|
|
padding: 28px;
|
|
border: 1px solid var(--border-hover);
|
|
border-radius: 12px;
|
|
background: var(--bg-raised);
|
|
color: var(--text);
|
|
box-shadow: 0 24px 64px rgba(0, 0, 0, .48);
|
|
position: relative;
|
|
}
|
|
|
|
.update-close-button {
|
|
position: absolute;
|
|
top: 12px;
|
|
right: 12px;
|
|
width: 32px;
|
|
height: 32px;
|
|
display: grid;
|
|
place-items: center;
|
|
padding: 0;
|
|
border: 1px solid transparent;
|
|
border-radius: 6px;
|
|
background: transparent;
|
|
color: var(--danger);
|
|
cursor: pointer;
|
|
}
|
|
|
|
.update-close-button:hover {
|
|
border-color: transparent;
|
|
background: var(--danger);
|
|
color: #000;
|
|
}
|
|
|
|
.update-close-button svg {
|
|
width: 17px;
|
|
height: 17px;
|
|
}
|
|
|
|
.update-dialog-icon {
|
|
width: 48px;
|
|
height: 48px;
|
|
display: grid;
|
|
place-items: center;
|
|
border-radius: 10px;
|
|
background: rgba(186, 208, 252, .11);
|
|
color: var(--accent);
|
|
}
|
|
|
|
.update-dialog-icon svg {
|
|
width: 25px;
|
|
height: 25px;
|
|
}
|
|
|
|
.update-dialog-copy {
|
|
min-width: 0;
|
|
padding: 2px 30px 0 0;
|
|
}
|
|
|
|
.update-dialog-copy h2 {
|
|
margin: 0 0 8px;
|
|
font-size: 18px;
|
|
line-height: 1.25;
|
|
}
|
|
|
|
.update-dialog-copy p {
|
|
margin: 0;
|
|
color: var(--text-muted);
|
|
font-size: 12px;
|
|
line-height: 1.55;
|
|
}
|
|
|
|
.update-progress {
|
|
grid-column: 1 / -1;
|
|
display: grid;
|
|
grid-template-columns: minmax(0, 1fr);
|
|
gap: 7px;
|
|
margin-top: 22px;
|
|
}
|
|
|
|
.update-progress.active {
|
|
display: grid;
|
|
}
|
|
|
|
.update-release-notes {
|
|
grid-column: 1 / -1;
|
|
height: min(220px, 42vh);
|
|
max-height: none;
|
|
margin-top: 18px;
|
|
padding: 12px;
|
|
overflow: auto;
|
|
border: 1px solid var(--border);
|
|
border-radius: 6px;
|
|
background: var(--bg-input);
|
|
color: var(--text-muted);
|
|
font-size: 11px;
|
|
line-height: 1.55;
|
|
}
|
|
|
|
.update-release-notes-title {
|
|
margin-bottom: 7px;
|
|
color: var(--text);
|
|
font-size: 11px;
|
|
font-weight: 700;
|
|
letter-spacing: .08em;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.update-release-notes-body {
|
|
white-space: pre-wrap;
|
|
}
|
|
|
|
.update-progress-track {
|
|
height: 6px;
|
|
border-radius: 999px;
|
|
background: #1a1a1a;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.update-progress-track span {
|
|
width: 0;
|
|
height: 100%;
|
|
display: block;
|
|
border-radius: inherit;
|
|
background: var(--success);
|
|
transition: width .48s cubic-bezier(.22, 1, .36, 1), background-color .16s ease;
|
|
}
|
|
|
|
.update-progress-track span[data-state="aborted"],
|
|
.update-progress-track span[data-state="error"] {
|
|
background: var(--danger);
|
|
}
|
|
|
|
.update-progress-footer {
|
|
min-width: 0;
|
|
display: flex;
|
|
align-items: baseline;
|
|
justify-content: space-between;
|
|
flex-wrap: wrap;
|
|
gap: 12px;
|
|
}
|
|
|
|
#updateProgressDetails {
|
|
min-width: 0;
|
|
display: grid;
|
|
grid-template-columns: 19ch auto 11ch auto 10ch;
|
|
align-items: baseline;
|
|
gap: 5px;
|
|
color: var(--text-dim);
|
|
font-size: 11px;
|
|
font-variant-numeric: tabular-nums;
|
|
line-height: 1.35;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
#updateProgressDetails[hidden] {
|
|
display: none;
|
|
}
|
|
|
|
.update-progress-separator {
|
|
text-align: center;
|
|
}
|
|
|
|
#updateProgressSpeed,
|
|
#updateProgressEta {
|
|
text-align: right;
|
|
}
|
|
|
|
#updateProgressText {
|
|
min-width: 34px;
|
|
max-width: 100%;
|
|
margin-left: auto;
|
|
flex: 0 0 auto;
|
|
color: var(--text-dim);
|
|
font-size: 11px;
|
|
line-height: 1.35;
|
|
text-align: right;
|
|
}
|
|
|
|
#dismissUpdateBtn.update-cancel-button {
|
|
border-color: transparent;
|
|
background: var(--danger);
|
|
color: #000;
|
|
}
|
|
|
|
#dismissUpdateBtn.update-cancel-button:hover {
|
|
border-color: transparent;
|
|
background: color-mix(in srgb, var(--danger) 82%, #fff);
|
|
color: #000;
|
|
}
|
|
|
|
.update-dialog-actions {
|
|
grid-column: 1 / -1;
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
gap: 8px;
|
|
margin-top: 24px;
|
|
}
|
|
|
|
.view {
|
|
min-width: 0;
|
|
min-height: 0;
|
|
background: var(--bg-main);
|
|
}
|
|
|
|
#upload-view.active,
|
|
#accounts-view.active,
|
|
#history-view.active {
|
|
display: grid;
|
|
grid-template-columns: 224px minmax(0, 1fr);
|
|
}
|
|
|
|
#settings-view.active {
|
|
display: flex;
|
|
}
|
|
|
|
.view-main {
|
|
min-width: 0;
|
|
min-height: 0;
|
|
overflow: hidden;
|
|
background: var(--bg-main);
|
|
}
|
|
|
|
.view-sidebar {
|
|
min-width: 0;
|
|
min-height: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 16px 12px 12px;
|
|
border-right: 1px solid var(--border);
|
|
background: var(--bg-secondary);
|
|
overflow: hidden auto;
|
|
}
|
|
|
|
.view-sidebar-header {
|
|
display: grid;
|
|
gap: 4px;
|
|
padding: 4px 10px 16px;
|
|
}
|
|
|
|
.view-sidebar-kicker,
|
|
.view-sidebar-section-label {
|
|
color: var(--text-dim);
|
|
font-size: 10px;
|
|
font-weight: 700;
|
|
letter-spacing: .09em;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.view-sidebar-title {
|
|
margin: 0;
|
|
color: var(--text);
|
|
font-size: 19px;
|
|
line-height: 1.2;
|
|
}
|
|
|
|
.view-sidebar-navigation {
|
|
display: grid;
|
|
gap: 4px;
|
|
position: relative;
|
|
isolation: isolate;
|
|
}
|
|
|
|
.view-sidebar-indicator {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 0;
|
|
height: 0;
|
|
z-index: 0;
|
|
border: 1px solid var(--border-hover);
|
|
border-radius: 6px;
|
|
background: var(--bg-active);
|
|
pointer-events: none;
|
|
transition: transform .22s cubic-bezier(.2, .8, .2, 1), width .22s cubic-bezier(.2, .8, .2, 1), height .22s cubic-bezier(.2, .8, .2, 1);
|
|
}
|
|
|
|
.view-sidebar-item {
|
|
width: 100%;
|
|
min-height: 36px;
|
|
display: grid;
|
|
grid-template-columns: 20px minmax(0, 1fr) auto;
|
|
align-items: center;
|
|
gap: 10px;
|
|
padding: 7px 10px;
|
|
border: 1px solid var(--border);
|
|
border-radius: 6px;
|
|
background: transparent;
|
|
color: var(--text-muted);
|
|
cursor: pointer;
|
|
font: inherit;
|
|
font-size: 12px;
|
|
text-align: left;
|
|
position: relative;
|
|
z-index: 1;
|
|
transition: color .12s, background-color .12s, border-color .12s;
|
|
}
|
|
|
|
.view-sidebar-item:hover {
|
|
color: var(--text);
|
|
border-color: var(--border-hover);
|
|
background: var(--bg-raised);
|
|
}
|
|
|
|
.view-sidebar-item.active {
|
|
color: var(--text);
|
|
border-color: transparent;
|
|
background: transparent;
|
|
}
|
|
|
|
.view-sidebar-item.active .view-sidebar-icon {
|
|
color: var(--accent);
|
|
}
|
|
|
|
.view-sidebar-icon {
|
|
width: 18px;
|
|
height: 18px;
|
|
color: currentColor;
|
|
}
|
|
|
|
.view-sidebar-copy {
|
|
min-width: 0;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.view-sidebar-badge {
|
|
height: 22px;
|
|
min-width: 22px;
|
|
display: inline-grid;
|
|
place-items: center;
|
|
padding: 0 7px;
|
|
border-radius: 999px;
|
|
background: var(--accent);
|
|
color: var(--accent-ink);
|
|
font-size: 12px;
|
|
font-weight: 700;
|
|
font-variant-numeric: tabular-nums;
|
|
line-height: 1;
|
|
text-align: center;
|
|
}
|
|
|
|
.view-sidebar-section {
|
|
display: grid;
|
|
gap: 8px;
|
|
margin-top: auto;
|
|
padding: 14px 10px 0;
|
|
border-top: 1px solid var(--border);
|
|
}
|
|
|
|
.upload-sidebar-lower {
|
|
display: grid;
|
|
gap: 12px;
|
|
margin-top: auto;
|
|
}
|
|
|
|
.upload-sidebar-lower .view-sidebar-section {
|
|
margin-top: 0;
|
|
}
|
|
|
|
.upload-sidebar-lower .view-sidebar-section-label {
|
|
font-size: 11px;
|
|
}
|
|
|
|
.upload-sidebar-lower .view-sidebar-summary {
|
|
font-size: 12px;
|
|
}
|
|
|
|
.upload-telemetry {
|
|
display: grid;
|
|
gap: 6px;
|
|
padding: 12px 10px 0;
|
|
border-top: 1px solid var(--border);
|
|
}
|
|
|
|
.upload-telemetry-row {
|
|
min-height: 17px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 12px;
|
|
color: var(--text-dim);
|
|
font-size: 12px;
|
|
line-height: 17px;
|
|
}
|
|
|
|
.upload-telemetry-value {
|
|
min-width: 58px;
|
|
color: var(--text);
|
|
font-size: 12px;
|
|
font-variant-numeric: tabular-nums;
|
|
text-align: right;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.upload-rolling-value {
|
|
height: 17px;
|
|
overflow: hidden;
|
|
position: relative;
|
|
}
|
|
|
|
.upload-rolling-value > span {
|
|
width: 100%;
|
|
height: 17px;
|
|
display: block;
|
|
}
|
|
|
|
.upload-rolling-value > .upload-rolling-outgoing,
|
|
.upload-rolling-value > .upload-rolling-incoming {
|
|
position: absolute;
|
|
inset: 0;
|
|
}
|
|
|
|
.view-sidebar-summary {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 12px;
|
|
color: var(--text-muted);
|
|
font-size: 11px;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.view-sidebar-summary strong {
|
|
color: var(--text);
|
|
font-variant-numeric: tabular-nums;
|
|
}
|
|
|
|
.view-sidebar-summary-block {
|
|
display: block;
|
|
}
|
|
|
|
.view-sidebar-hosters {
|
|
display: grid;
|
|
gap: 5px;
|
|
}
|
|
|
|
.view-sidebar-hoster {
|
|
min-height: 30px;
|
|
display: grid;
|
|
grid-template-columns: 7px minmax(0, 1fr) auto;
|
|
align-items: center;
|
|
gap: 8px;
|
|
color: var(--text-muted);
|
|
font-size: 11px;
|
|
}
|
|
|
|
.view-sidebar-hoster-dot {
|
|
width: 7px;
|
|
height: 7px;
|
|
border-radius: 50%;
|
|
background: var(--success);
|
|
}
|
|
|
|
.view-sidebar-footnote {
|
|
margin-top: 0;
|
|
padding: 14px 10px 4px;
|
|
color: var(--text-dim);
|
|
font-size: 10px;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.upload-main {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.upload-toolbar,
|
|
.accounts-header,
|
|
.history-header,
|
|
.settings-header {
|
|
min-height: 52px;
|
|
margin: 0;
|
|
padding: 8px 14px;
|
|
border: 0;
|
|
border-bottom: 1px solid var(--border);
|
|
border-radius: 0;
|
|
background: var(--bg-secondary);
|
|
}
|
|
|
|
.upload-toolbar {
|
|
flex-wrap: nowrap;
|
|
}
|
|
|
|
.page-heading,
|
|
.accounts-header > div:first-child,
|
|
.settings-header > div:first-child {
|
|
display: grid;
|
|
gap: 3px;
|
|
}
|
|
|
|
.page-heading h2,
|
|
.accounts-header h2,
|
|
.history-header h2,
|
|
.settings-header h2 {
|
|
margin: 0;
|
|
color: var(--text);
|
|
font-size: 16px;
|
|
line-height: 1.2;
|
|
}
|
|
|
|
.page-heading p,
|
|
.settings-hint {
|
|
margin: 0;
|
|
color: var(--text-dim);
|
|
font-size: 11px;
|
|
line-height: 1.4;
|
|
}
|
|
|
|
.hoster-summary {
|
|
color: var(--text-dim);
|
|
font-size: 10px;
|
|
line-height: 1.45;
|
|
overflow-wrap: anywhere;
|
|
}
|
|
|
|
.upload-workspace {
|
|
background: var(--bg-main);
|
|
}
|
|
|
|
.drop-zone {
|
|
margin: 16px;
|
|
border: 1px dashed transparent;
|
|
border-radius: 8px;
|
|
background: transparent;
|
|
box-shadow: none;
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.drop-zone.drag-over {
|
|
border-color: var(--accent);
|
|
background: #26282b;
|
|
}
|
|
|
|
.drop-zone p {
|
|
margin: 0;
|
|
color: var(--text);
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.drop-zone > span {
|
|
margin-top: 7px;
|
|
color: var(--text-dim);
|
|
font-size: 11px;
|
|
}
|
|
|
|
.drop-icon {
|
|
width: 52px;
|
|
height: 52px;
|
|
display: grid;
|
|
place-items: center;
|
|
margin: 0 0 14px;
|
|
border-radius: 10px;
|
|
background: var(--bg-raised);
|
|
color: var(--accent);
|
|
}
|
|
|
|
.drop-icon svg {
|
|
width: 27px;
|
|
height: 27px;
|
|
}
|
|
|
|
.queue-shell {
|
|
background: var(--bg-main);
|
|
}
|
|
|
|
.queue-command-bar {
|
|
min-height: 44px;
|
|
gap: 4px;
|
|
padding: 5px 10px;
|
|
background: var(--bg-secondary);
|
|
}
|
|
|
|
.toolbar-btn {
|
|
width: 34px;
|
|
height: 32px;
|
|
border-radius: 6px;
|
|
}
|
|
|
|
.toolbar-btn:hover {
|
|
border-color: var(--border-hover);
|
|
background: var(--bg-active);
|
|
}
|
|
|
|
.queue-container,
|
|
.recent-files-table-wrap,
|
|
.history-main #historyContainer {
|
|
overflow: auto;
|
|
}
|
|
|
|
.queue-table {
|
|
min-width: 0;
|
|
}
|
|
|
|
.queue-table th,
|
|
.recent-files-table th,
|
|
.results-table th,
|
|
.history-table th {
|
|
height: 34px;
|
|
padding: 0 10px;
|
|
background: var(--bg-raised);
|
|
color: var(--text-dim);
|
|
border-bottom: 1px solid var(--border);
|
|
font-size: 10px;
|
|
font-weight: 700;
|
|
letter-spacing: .055em;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.queue-row,
|
|
.recent-file-row,
|
|
.history-row {
|
|
height: 28px;
|
|
}
|
|
|
|
.queue-table td,
|
|
.recent-files-table td,
|
|
.history-row td {
|
|
height: 28px;
|
|
padding: 0 10px;
|
|
border-bottom: 1px solid #303030;
|
|
}
|
|
|
|
.queue-row:hover,
|
|
.recent-file-row:hover,
|
|
.history-row:hover {
|
|
background: rgba(255, 255, 255, .035);
|
|
}
|
|
|
|
.queue-row.selected {
|
|
background: rgba(186, 208, 252, .18) !important;
|
|
box-shadow: inset 3px 0 0 var(--accent);
|
|
}
|
|
|
|
.recent-file-row.selected,
|
|
.history-row.selected {
|
|
background: rgba(186, 208, 252, .1) !important;
|
|
}
|
|
|
|
.status-badge,
|
|
.health-badge,
|
|
.account-status,
|
|
.panel-status {
|
|
min-height: 22px;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
padding: 3px 8px;
|
|
border-radius: 999px;
|
|
font-size: 10px;
|
|
line-height: 1;
|
|
}
|
|
|
|
.status-badge::before,
|
|
.health-badge::before,
|
|
.panel-status::before {
|
|
content: "";
|
|
width: 6px;
|
|
height: 6px;
|
|
border-radius: 50%;
|
|
background: currentColor;
|
|
flex: 0 0 auto;
|
|
}
|
|
|
|
.progress-bar-bg {
|
|
height: 6px;
|
|
border-radius: 999px;
|
|
background: #303030;
|
|
}
|
|
|
|
.progress-bar-fill {
|
|
border-radius: inherit;
|
|
}
|
|
|
|
.queue-actions,
|
|
.recent-files-header {
|
|
min-height: 44px;
|
|
padding: 6px 10px;
|
|
background: var(--bg-secondary);
|
|
}
|
|
|
|
.recent-files-panel {
|
|
background: var(--bg-main);
|
|
}
|
|
|
|
.recent-tab {
|
|
min-height: 32px;
|
|
padding: 0 12px;
|
|
border-radius: 6px !important;
|
|
border: 1px solid transparent;
|
|
}
|
|
|
|
.recent-tab.active {
|
|
border-color: var(--border-hover);
|
|
background: var(--bg-active);
|
|
}
|
|
|
|
.stats-grid {
|
|
gap: 20px;
|
|
padding: 16px;
|
|
}
|
|
|
|
.btn {
|
|
min-height: 34px;
|
|
padding: 0 12px;
|
|
border-radius: 6px;
|
|
font-size: 12px;
|
|
letter-spacing: 0;
|
|
box-shadow: none;
|
|
transition: color .14s, background-color .14s, border-color .14s, transform .14s;
|
|
}
|
|
|
|
.btn-xs {
|
|
min-height: 32px;
|
|
padding: 0 11px;
|
|
border-radius: 6px;
|
|
font-size: 11px;
|
|
}
|
|
|
|
.btn-sm {
|
|
min-height: 34px;
|
|
}
|
|
|
|
.btn-primary {
|
|
border-color: transparent;
|
|
background: var(--accent);
|
|
color: var(--accent-ink);
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
background: var(--accent-end);
|
|
filter: none;
|
|
transform: none;
|
|
}
|
|
|
|
.btn-success {
|
|
border-color: transparent;
|
|
background: var(--success);
|
|
color: #082616;
|
|
}
|
|
|
|
.btn-success:hover {
|
|
background: var(--success-end);
|
|
filter: none;
|
|
transform: none;
|
|
}
|
|
|
|
.btn-secondary {
|
|
border-color: var(--border);
|
|
background: var(--bg-raised);
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.btn-secondary:hover {
|
|
border-color: var(--border-hover);
|
|
background: var(--bg-active);
|
|
color: var(--text);
|
|
}
|
|
|
|
.btn-danger {
|
|
border-color: rgba(255, 133, 140, .34);
|
|
background: rgba(255, 133, 140, .13);
|
|
color: var(--danger);
|
|
}
|
|
|
|
.btn-danger:hover {
|
|
border-color: rgba(255, 133, 140, .55);
|
|
background: rgba(255, 133, 140, .2);
|
|
filter: none;
|
|
transform: none;
|
|
}
|
|
|
|
.btn-danger:disabled {
|
|
border-color: var(--border);
|
|
background: var(--bg-raised);
|
|
color: var(--text-dim);
|
|
opacity: .65;
|
|
cursor: default;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.key-input,
|
|
.hs-input {
|
|
min-height: 40px;
|
|
border-color: var(--border);
|
|
border-radius: 6px;
|
|
background: var(--bg-input);
|
|
color: var(--text);
|
|
}
|
|
|
|
.key-input:focus,
|
|
.hs-input:focus,
|
|
#settingsSearchInput:focus {
|
|
border-color: var(--accent);
|
|
box-shadow: 0 0 0 2px rgba(186, 208, 252, .12);
|
|
}
|
|
|
|
input[type="checkbox"] {
|
|
accent-color: var(--accent);
|
|
}
|
|
|
|
.settings-container {
|
|
padding: 0;
|
|
gap: 0;
|
|
background: var(--bg-main);
|
|
}
|
|
|
|
.settings-header {
|
|
flex: 0 0 auto;
|
|
}
|
|
|
|
.settings-hosters {
|
|
min-height: 0;
|
|
padding: 12px;
|
|
}
|
|
|
|
.settings-layout {
|
|
grid-template-columns: 224px minmax(0, 1fr);
|
|
border-radius: 8px;
|
|
background: var(--bg-main);
|
|
}
|
|
|
|
.settings-sidebar {
|
|
gap: 12px;
|
|
padding: 14px 12px;
|
|
background: var(--bg-secondary);
|
|
}
|
|
|
|
.settings-sidebar-status {
|
|
display: grid;
|
|
gap: 8px;
|
|
margin-top: auto;
|
|
padding: 14px 10px 2px;
|
|
border-top: 1px solid var(--border);
|
|
}
|
|
|
|
.settings-sidebar-status .save-feedback {
|
|
color: var(--text-muted);
|
|
font-size: 11px;
|
|
line-height: 1.45;
|
|
}
|
|
|
|
.settings-search-wrap {
|
|
padding: 0 2px 6px;
|
|
}
|
|
|
|
.settings-search-icon {
|
|
color: var(--text-dim);
|
|
}
|
|
|
|
.settings-navigation {
|
|
gap: 4px;
|
|
}
|
|
|
|
.settings-nav-button {
|
|
min-height: 36px;
|
|
padding: 7px 10px;
|
|
border: 1px solid transparent;
|
|
border-left: 1px solid transparent;
|
|
border-radius: 6px;
|
|
color: var(--text-muted);
|
|
font-size: 12px;
|
|
}
|
|
|
|
.settings-nav-button:hover {
|
|
background: var(--bg-raised);
|
|
}
|
|
|
|
.settings-nav-button.active {
|
|
border-color: transparent;
|
|
background: transparent;
|
|
color: var(--text);
|
|
}
|
|
|
|
.settings-content {
|
|
padding: 24px 28px 36px;
|
|
background: var(--bg-main);
|
|
}
|
|
|
|
.settings-subpage {
|
|
max-width: 720px;
|
|
margin: 0;
|
|
}
|
|
|
|
.program-update-row {
|
|
display: grid !important;
|
|
grid-template-columns: minmax(0, 1fr) auto;
|
|
align-items: center !important;
|
|
min-height: 78px !important;
|
|
column-gap: 18px !important;
|
|
}
|
|
|
|
.program-update-copy {
|
|
min-width: 0;
|
|
display: grid;
|
|
gap: 4px;
|
|
}
|
|
|
|
.program-update-title {
|
|
color: var(--text);
|
|
font-size: 12px;
|
|
line-height: 1.35;
|
|
}
|
|
|
|
.program-update-description {
|
|
color: var(--text-muted);
|
|
font-size: 10px;
|
|
line-height: 1.45;
|
|
}
|
|
|
|
.language-settings-row {
|
|
display: block !important;
|
|
}
|
|
|
|
.language-settings-row > label {
|
|
display: block;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.language-picker {
|
|
position: relative;
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
width: 100%;
|
|
padding: 4px;
|
|
overflow: hidden;
|
|
border: 1px solid var(--border);
|
|
border-radius: 8px;
|
|
background: var(--bg-input);
|
|
}
|
|
|
|
.language-picker-indicator {
|
|
position: absolute;
|
|
z-index: 0;
|
|
top: 4px;
|
|
bottom: 4px;
|
|
left: 4px;
|
|
width: calc((100% - 8px) / 2);
|
|
border-radius: 6px;
|
|
background: var(--accent);
|
|
box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18);
|
|
transform: translateX(0);
|
|
transition: transform .24s cubic-bezier(.22, 1, .36, 1);
|
|
}
|
|
|
|
.language-picker[data-language="de"] .language-picker-indicator {
|
|
transform: translateX(100%);
|
|
}
|
|
|
|
.language-option {
|
|
position: relative;
|
|
z-index: 1;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 9px;
|
|
min-width: 0;
|
|
min-height: 38px;
|
|
padding: 0 12px;
|
|
border: 0;
|
|
border-radius: 6px;
|
|
background: transparent;
|
|
color: var(--text-muted);
|
|
font: inherit;
|
|
font-size: 12px;
|
|
font-weight: 600;
|
|
cursor: pointer;
|
|
transition: color .18s ease;
|
|
}
|
|
|
|
.language-option[aria-pressed="true"] {
|
|
color: var(--accent-ink);
|
|
}
|
|
|
|
.language-option:focus-visible {
|
|
outline: 2px solid var(--accent-end);
|
|
outline-offset: -2px;
|
|
}
|
|
|
|
.language-flag {
|
|
position: relative;
|
|
width: 18px;
|
|
height: 12px;
|
|
flex: 0 0 auto;
|
|
overflow: hidden;
|
|
border: 1px solid rgba(0, 0, 0, .34);
|
|
border-radius: 2px;
|
|
box-shadow: 0 0 0 1px rgba(255, 255, 255, .08);
|
|
}
|
|
|
|
.language-flag-de {
|
|
background: linear-gradient(to bottom, #151515 0 33.33%, #d00 33.33% 66.66%, #ffce00 66.66% 100%);
|
|
}
|
|
|
|
.language-flag-en {
|
|
background: repeating-linear-gradient(to bottom, #b22234 0 8.33%, #fff 8.33% 16.66%);
|
|
}
|
|
|
|
.language-flag-en::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 8px;
|
|
height: 7px;
|
|
background: #3c3b6e;
|
|
}
|
|
|
|
.log-file-path-row {
|
|
display: flex !important;
|
|
align-items: center !important;
|
|
flex-wrap: wrap !important;
|
|
gap: 8px !important;
|
|
}
|
|
|
|
.log-file-path-row > label {
|
|
min-width: 140px !important;
|
|
flex: 1 1 190px;
|
|
}
|
|
|
|
.log-file-path-row > .key-input {
|
|
width: auto;
|
|
min-width: 180px !important;
|
|
max-width: 100%;
|
|
flex: 999 1 260px;
|
|
}
|
|
|
|
.log-file-path-row .btn {
|
|
flex: 0 0 auto;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.settings-page-header {
|
|
margin-bottom: 22px;
|
|
}
|
|
|
|
.settings-page-header h3 {
|
|
font-size: 18px;
|
|
}
|
|
|
|
.settings-page-header p {
|
|
color: var(--text-dim);
|
|
}
|
|
|
|
.settings-section-label {
|
|
margin: 24px 0 9px;
|
|
padding-bottom: 8px;
|
|
color: var(--text-dim);
|
|
}
|
|
|
|
.settings-subpage .settings-row,
|
|
.settings-option,
|
|
.settings-subpage .settings-grid-mini .settings-row.checkbox-row {
|
|
border-color: var(--border);
|
|
border-radius: 6px;
|
|
background: var(--bg-secondary);
|
|
}
|
|
|
|
.settings-subpage .settings-row {
|
|
min-height: 52px;
|
|
padding: 9px 11px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.settings-subpage .settings-row > label {
|
|
min-width: 190px;
|
|
}
|
|
|
|
.settings-subpage .settings-row > .hint {
|
|
flex: 1 0 100%;
|
|
padding-left: 198px;
|
|
}
|
|
|
|
.settings-subpage .settings-row-wide > .hint {
|
|
flex-basis: 100%;
|
|
margin-left: 0;
|
|
}
|
|
|
|
.settings-grid-mini {
|
|
gap: 8px;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.log-paths-list,
|
|
.log-paths-list > div,
|
|
.log-paths-list code {
|
|
min-width: 0;
|
|
}
|
|
|
|
.settings-option {
|
|
min-height: 58px;
|
|
}
|
|
|
|
.settings-option.source-delete-option {
|
|
border-color: color-mix(in srgb, var(--danger) 72%, var(--border));
|
|
box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--danger) 10%, transparent);
|
|
}
|
|
|
|
.settings-option.source-delete-option:focus-within {
|
|
border-color: var(--danger);
|
|
}
|
|
|
|
.settings-option-description,
|
|
.hint {
|
|
color: var(--text-dim);
|
|
}
|
|
|
|
.settings-hoster-pointer,
|
|
.online-backup-panel {
|
|
border-color: var(--border);
|
|
border-radius: 6px;
|
|
background: var(--bg-secondary);
|
|
}
|
|
|
|
.online-backup-panel {
|
|
padding: 16px;
|
|
}
|
|
|
|
.online-backup-key-row {
|
|
grid-template-columns: minmax(140px, auto) minmax(180px, 1fr) auto;
|
|
}
|
|
|
|
#settings-view {
|
|
user-select: none;
|
|
}
|
|
|
|
#settings-view :is(input, textarea) {
|
|
user-select: text;
|
|
}
|
|
|
|
#upload-view {
|
|
user-select: none;
|
|
}
|
|
|
|
#upload-view :is(input, textarea, [contenteditable="true"]) {
|
|
user-select: text;
|
|
}
|
|
|
|
.settings-header h2 {
|
|
font-size: 18px;
|
|
}
|
|
|
|
.settings-header .settings-hint {
|
|
font-size: 13px;
|
|
}
|
|
|
|
.settings-search-wrap > label,
|
|
.settings-section-label {
|
|
font-size: 12px;
|
|
}
|
|
|
|
.settings-search-control,
|
|
#settingsSearchInput {
|
|
height: 44px;
|
|
min-height: 44px;
|
|
}
|
|
|
|
#settingsSearchInput {
|
|
font-size: 13px;
|
|
}
|
|
|
|
.settings-nav-button {
|
|
min-height: 42px;
|
|
padding: 9px 11px;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.settings-sidebar-status .save-feedback {
|
|
font-size: 13px;
|
|
}
|
|
|
|
.settings-content {
|
|
padding-bottom: 42px;
|
|
}
|
|
|
|
.settings-subpage {
|
|
max-width: 820px;
|
|
}
|
|
|
|
.settings-page-header {
|
|
margin-bottom: 26px;
|
|
}
|
|
|
|
.settings-page-header h3 {
|
|
font-size: 22px;
|
|
}
|
|
|
|
.settings-page-header p {
|
|
font-size: 14px;
|
|
line-height: 1.55;
|
|
}
|
|
|
|
.settings-section-label {
|
|
margin-top: 28px;
|
|
padding-bottom: 10px;
|
|
}
|
|
|
|
.settings-subpage .settings-row {
|
|
min-height: 64px;
|
|
gap: 10px;
|
|
padding: 12px 14px;
|
|
}
|
|
|
|
.settings-subpage .settings-row > label {
|
|
min-width: 210px;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.settings-subpage .settings-row > .hint {
|
|
padding-left: 220px;
|
|
}
|
|
|
|
.settings-subpage .settings-row-wide > .hint {
|
|
margin-left: 0;
|
|
}
|
|
|
|
.settings-subpage :is(.key-input, .hs-input:not([type="checkbox"])) {
|
|
padding: 8px 11px;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.settings-subpage .automation-retry-row {
|
|
grid-template-columns: 210px minmax(0, 1fr);
|
|
}
|
|
|
|
.settings-subpage .automation-retry-row > label {
|
|
padding-top: 10px;
|
|
}
|
|
|
|
.settings-option {
|
|
min-height: 70px;
|
|
padding: 14px;
|
|
}
|
|
|
|
.settings-option-copy {
|
|
gap: 6px;
|
|
}
|
|
|
|
.settings-option-copy label,
|
|
.program-update-title,
|
|
.online-backup-key-row label {
|
|
font-size: 14px;
|
|
}
|
|
|
|
.settings-option-description,
|
|
.program-update-description,
|
|
.hint {
|
|
font-size: 12px;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.settings-option > input[type="checkbox"],
|
|
.settings-subpage .settings-grid-mini .checkbox-row input[type="checkbox"] {
|
|
width: 20px;
|
|
height: 20px;
|
|
}
|
|
|
|
.settings-subpage .settings-grid-mini .settings-row.checkbox-row {
|
|
min-height: 62px;
|
|
}
|
|
|
|
.program-update-row {
|
|
min-height: 90px !important;
|
|
}
|
|
|
|
.language-option {
|
|
min-height: 44px;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.settings-hoster-pointer,
|
|
.online-backup-status,
|
|
.settings-empty {
|
|
font-size: 13px;
|
|
}
|
|
|
|
.online-backup-panel h3 {
|
|
font-size: 18px;
|
|
}
|
|
|
|
.online-backup-panel p {
|
|
font-size: 14px;
|
|
}
|
|
|
|
#settings-view .btn {
|
|
min-height: 40px;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.accounts-main,
|
|
.history-main {
|
|
padding: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.accounts-header,
|
|
.history-header {
|
|
flex: 0 0 auto;
|
|
}
|
|
|
|
.accounts-header-actions,
|
|
.history-header-actions {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
gap: 8px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.accounts-auto-check {
|
|
min-height: 34px;
|
|
height: 34px;
|
|
padding: 0 12px;
|
|
border-radius: 6px;
|
|
background: var(--bg-raised);
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.accounts-header-actions > .btn {
|
|
min-height: 34px;
|
|
height: 34px;
|
|
}
|
|
|
|
.account-health-results {
|
|
padding: 10px 16px 0;
|
|
}
|
|
|
|
.accounts-list {
|
|
flex: 1 1 auto;
|
|
min-height: 0;
|
|
padding: 12px 16px 16px;
|
|
gap: 8px;
|
|
grid-auto-rows: max-content;
|
|
overflow: auto;
|
|
}
|
|
|
|
.accounts-list-footer {
|
|
flex: 0 0 auto;
|
|
margin: 0;
|
|
padding: 8px 16px;
|
|
border-top: 1px solid var(--border);
|
|
background: var(--bg-secondary);
|
|
}
|
|
|
|
.account-hoster-group,
|
|
.account-card {
|
|
border-color: var(--border);
|
|
border-radius: 6px;
|
|
background: var(--bg-secondary);
|
|
}
|
|
|
|
.account-hoster-group {
|
|
width: 100%;
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.account-card {
|
|
display: grid;
|
|
grid-template-columns: auto minmax(0, 1fr) auto auto;
|
|
}
|
|
|
|
.account-otp-action {
|
|
display: grid;
|
|
grid-template-columns: minmax(0, 1fr) auto;
|
|
}
|
|
|
|
.account-otp-input {
|
|
width: 100%;
|
|
min-width: 0;
|
|
max-width: none;
|
|
}
|
|
|
|
.account-hoster-group-header {
|
|
min-height: 40px;
|
|
padding: 8px 12px;
|
|
background: var(--bg-secondary);
|
|
}
|
|
|
|
.account-hoster-group-header:hover,
|
|
.account-card:hover {
|
|
background: var(--bg-raised);
|
|
}
|
|
|
|
.accounts-empty {
|
|
width: min(500px, 100%);
|
|
margin: clamp(44px, 9vh, 92px) auto 0;
|
|
padding: 28px;
|
|
border: 0;
|
|
border-radius: 0;
|
|
background: transparent;
|
|
box-shadow: none;
|
|
}
|
|
|
|
.accounts-empty p {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.view-sidebar-hosters:empty::after {
|
|
content: attr(data-empty-label);
|
|
color: var(--text-dim);
|
|
font-size: 10px;
|
|
}
|
|
|
|
.accounts-empty-icon {
|
|
border-radius: 8px;
|
|
background: var(--bg-raised);
|
|
color: var(--accent);
|
|
}
|
|
|
|
.history-header-actions {
|
|
min-width: 0;
|
|
}
|
|
|
|
.history-retention-select {
|
|
min-width: 150px;
|
|
}
|
|
|
|
.history-cap-notice {
|
|
margin: 12px 16px 0;
|
|
border-radius: 6px;
|
|
background: var(--bg-secondary);
|
|
}
|
|
|
|
.history-main #historyContainer {
|
|
min-height: 0;
|
|
flex: 1 1 auto;
|
|
padding: 12px 16px 16px;
|
|
}
|
|
|
|
.history-table {
|
|
min-width: 780px;
|
|
}
|
|
|
|
.empty-state {
|
|
min-height: 260px;
|
|
display: grid;
|
|
place-items: center;
|
|
padding: 40px;
|
|
color: var(--text-dim);
|
|
}
|
|
|
|
.modal-overlay {
|
|
background: rgba(0, 0, 0, .6);
|
|
}
|
|
|
|
.modal-card {
|
|
border-color: var(--border-hover);
|
|
border-radius: 12px;
|
|
background: var(--bg-raised);
|
|
box-shadow: 0 24px 64px rgba(0, 0, 0, .48);
|
|
}
|
|
|
|
.modal-header,
|
|
.modal-footer {
|
|
padding: 16px 18px;
|
|
}
|
|
|
|
.modal-body {
|
|
padding: 16px 18px 12px;
|
|
}
|
|
|
|
.icon-btn {
|
|
border-radius: 6px;
|
|
background: transparent;
|
|
}
|
|
|
|
.context-menu,
|
|
.ctx-submenu-items {
|
|
border-color: var(--border-hover);
|
|
border-radius: 8px;
|
|
background: var(--bg-raised);
|
|
box-shadow: 0 18px 38px rgba(0, 0, 0, .4);
|
|
}
|
|
|
|
.ctx-item {
|
|
min-height: 32px;
|
|
display: flex;
|
|
align-items: center;
|
|
margin: 0 4px;
|
|
padding: 6px 10px;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.ctx-item:hover {
|
|
background: var(--bg-active);
|
|
}
|
|
|
|
.copy-toast {
|
|
top: 60px;
|
|
right: 12px;
|
|
bottom: auto;
|
|
left: auto;
|
|
width: max-content;
|
|
max-width: min(420px, calc(100vw - 24px));
|
|
overflow-wrap: anywhere;
|
|
white-space: normal;
|
|
transform: translateY(-8px);
|
|
border-radius: 6px;
|
|
background: rgba(35, 35, 35, .96);
|
|
color: var(--success);
|
|
box-shadow: 0 12px 30px rgba(0, 0, 0, .38);
|
|
}
|
|
|
|
.copy-toast.show {
|
|
transform: translateY(0);
|
|
}
|
|
|
|
.status-badge {
|
|
min-width: 0;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.status-badge-label {
|
|
min-width: 0;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
width: 8px;
|
|
height: 8px;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background: #4a4a4a;
|
|
border-radius: 999px;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background: #5c5c5c;
|
|
}
|
|
|
|
:where(button, input, select, textarea, [tabindex]):focus-visible {
|
|
outline-color: var(--accent);
|
|
}
|
|
|
|
@media (max-width: 1199px) {
|
|
#upload-view.active,
|
|
#accounts-view.active,
|
|
#history-view.active {
|
|
grid-template-columns: 224px minmax(0, 1fr);
|
|
}
|
|
|
|
.settings-layout {
|
|
grid-template-columns: 224px minmax(0, 1fr);
|
|
}
|
|
|
|
.upload-speed-sparkline {
|
|
width: 168px;
|
|
}
|
|
|
|
.stats-grid {
|
|
gap: 12px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 999px) {
|
|
#upload-view.active,
|
|
#accounts-view.active,
|
|
#history-view.active {
|
|
grid-template-columns: 72px minmax(0, 1fr);
|
|
}
|
|
|
|
.view-sidebar {
|
|
padding: 14px 9px 10px;
|
|
}
|
|
|
|
.view-sidebar-header,
|
|
.view-sidebar-section,
|
|
.view-sidebar-footnote,
|
|
.view-sidebar-copy,
|
|
.view-sidebar-badge {
|
|
display: none;
|
|
}
|
|
|
|
.upload-sidebar-lower {
|
|
display: none;
|
|
}
|
|
|
|
#upload-view.active {
|
|
grid-template-columns: clamp(196px, 24vw, 224px) minmax(0, 1fr);
|
|
}
|
|
|
|
#upload-view .view-sidebar {
|
|
padding: 14px 10px 10px;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
#upload-view .view-sidebar-section,
|
|
#upload-view .upload-sidebar-lower {
|
|
display: grid;
|
|
}
|
|
|
|
#upload-view .view-sidebar-copy {
|
|
display: block;
|
|
}
|
|
|
|
#upload-view .view-sidebar-badge {
|
|
display: grid;
|
|
}
|
|
|
|
#upload-view .upload-sidebar-lower {
|
|
min-width: 0;
|
|
gap: 10px;
|
|
margin-top: 10px;
|
|
flex: 0 0 auto;
|
|
}
|
|
|
|
#upload-view .upload-sidebar-lower .view-sidebar-section {
|
|
padding-top: 10px;
|
|
}
|
|
|
|
#upload-view .upload-telemetry {
|
|
gap: 4px;
|
|
padding-top: 8px;
|
|
}
|
|
|
|
#upload-view .view-sidebar-navigation {
|
|
gap: 4px;
|
|
}
|
|
|
|
#upload-view .view-sidebar-item {
|
|
min-height: 34px;
|
|
grid-template-columns: 20px minmax(0, 1fr) auto;
|
|
place-items: initial;
|
|
align-items: center;
|
|
padding: 6px 8px;
|
|
}
|
|
|
|
#upload-view .view-sidebar-icon {
|
|
width: 18px;
|
|
height: 18px;
|
|
}
|
|
|
|
#upload-view .upload-telemetry-row,
|
|
#upload-view .upload-availability,
|
|
#upload-view .hoster-summary {
|
|
min-width: 0;
|
|
}
|
|
|
|
#upload-view .upload-telemetry-row {
|
|
gap: 8px;
|
|
}
|
|
|
|
#upload-view .upload-telemetry-label {
|
|
min-width: 0;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
#upload-view .hoster-summary {
|
|
overflow-wrap: anywhere;
|
|
}
|
|
|
|
.account-card {
|
|
grid-template-columns: auto minmax(0, 1fr) auto;
|
|
align-items: start;
|
|
}
|
|
|
|
.account-card-actions {
|
|
grid-column: 2 / -1;
|
|
justify-content: flex-end;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.upload-speed-sparkline {
|
|
width: 142px;
|
|
grid-template-columns: minmax(0, 1fr) max-content;
|
|
gap: 4px;
|
|
padding-inline: 6px;
|
|
}
|
|
|
|
.view-sidebar-navigation {
|
|
gap: 6px;
|
|
}
|
|
|
|
.view-sidebar-item {
|
|
min-height: 42px;
|
|
display: grid;
|
|
grid-template-columns: 1fr;
|
|
place-items: center;
|
|
padding: 0;
|
|
}
|
|
|
|
.view-sidebar-icon {
|
|
width: 19px;
|
|
height: 19px;
|
|
}
|
|
|
|
.settings-layout {
|
|
grid-template-columns: 190px minmax(0, 1fr);
|
|
}
|
|
|
|
.settings-sidebar {
|
|
padding: 12px 8px;
|
|
}
|
|
|
|
.settings-nav-button {
|
|
padding: 7px 8px;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.settings-content {
|
|
padding: 20px;
|
|
}
|
|
|
|
.app-brand {
|
|
padding-right: 5px;
|
|
}
|
|
|
|
.app-brand-name {
|
|
display: none;
|
|
}
|
|
|
|
.header-update-button {
|
|
min-width: 34px;
|
|
width: 34px;
|
|
flex: 0 0 34px;
|
|
padding: 0;
|
|
}
|
|
|
|
.header-update-slot.is-visible {
|
|
width: 34px;
|
|
flex-basis: 34px;
|
|
}
|
|
|
|
.header-update-label,
|
|
.version-label {
|
|
display: none;
|
|
}
|
|
|
|
.version-badge {
|
|
padding-right: 4px;
|
|
}
|
|
|
|
.accounts-header,
|
|
.history-header {
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.history-retention-label {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 839px) {
|
|
.app-header {
|
|
gap: 5px;
|
|
padding-inline: 6px;
|
|
}
|
|
|
|
.header-cluster {
|
|
gap: 2px;
|
|
padding-inline: 3px;
|
|
}
|
|
|
|
.header-spacer {
|
|
min-width: 0;
|
|
}
|
|
|
|
.header-divider {
|
|
margin-inline: 0;
|
|
}
|
|
|
|
.tab {
|
|
width: 34px;
|
|
}
|
|
|
|
.menu-bar-trigger {
|
|
width: 32px;
|
|
}
|
|
|
|
.upload-speed-sparkline {
|
|
width: 64px;
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.upload-speed-chart {
|
|
display: none;
|
|
}
|
|
|
|
.settings-layout {
|
|
height: auto;
|
|
grid-template-columns: minmax(0, 1fr);
|
|
overflow: hidden;
|
|
}
|
|
|
|
.settings-container {
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.settings-hosters {
|
|
flex: 0 0 auto;
|
|
min-width: 0;
|
|
}
|
|
|
|
.settings-sidebar {
|
|
min-width: 0;
|
|
overflow: visible;
|
|
border-right: 0;
|
|
border-bottom: 1px solid var(--border);
|
|
}
|
|
|
|
.settings-navigation {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
}
|
|
|
|
.settings-content {
|
|
min-width: 0;
|
|
overflow: visible;
|
|
}
|
|
|
|
.settings-search-wrap > label {
|
|
display: block;
|
|
}
|
|
|
|
.settings-content {
|
|
padding: 18px 16px 28px;
|
|
}
|
|
|
|
.settings-search-wrap,
|
|
.settings-search-control,
|
|
#settingsSearchInput,
|
|
.settings-nav-button {
|
|
min-width: 0;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.settings-sidebar-status {
|
|
margin-top: 0;
|
|
}
|
|
|
|
.settings-subpage .settings-row > label {
|
|
min-width: 100%;
|
|
}
|
|
|
|
.settings-subpage .settings-row > .hint {
|
|
padding-left: 0;
|
|
}
|
|
|
|
.settings-grid-mini {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.log-file-path-row > label,
|
|
.log-file-path-row > .key-input {
|
|
min-width: 0 !important;
|
|
flex-basis: 100%;
|
|
}
|
|
|
|
.upload-toolbar,
|
|
.accounts-header,
|
|
.history-header,
|
|
.settings-header {
|
|
min-height: 58px;
|
|
padding: 8px 12px;
|
|
}
|
|
|
|
.page-heading p,
|
|
.accounts-header .settings-hint,
|
|
.settings-header .settings-hint,
|
|
.save-feedback {
|
|
display: none;
|
|
}
|
|
|
|
.accounts-header-actions,
|
|
.history-header-actions {
|
|
gap: 5px;
|
|
}
|
|
|
|
.accounts-auto-check {
|
|
display: flex;
|
|
}
|
|
|
|
.accounts-header {
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.accounts-header-actions {
|
|
width: 100%;
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.account-card {
|
|
grid-template-columns: auto minmax(0, 1fr);
|
|
}
|
|
|
|
.account-status,
|
|
.account-card-actions {
|
|
grid-column: 2;
|
|
justify-self: start;
|
|
}
|
|
|
|
.account-card-actions {
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.account-otp-action {
|
|
grid-template-columns: minmax(0, 1fr);
|
|
}
|
|
|
|
.account-otp-action .btn {
|
|
width: 100%;
|
|
}
|
|
|
|
.history-retention-select {
|
|
min-width: 120px;
|
|
}
|
|
|
|
.history-retention-picker,
|
|
.history-retention-trigger {
|
|
min-width: 120px;
|
|
}
|
|
|
|
}
|
|
|
|
@media (prefers-reduced-motion: reduce) {
|
|
.header-update-button.is-checking .header-action-icon,
|
|
.header-update-button.is-downloading .header-action-icon {
|
|
animation: none;
|
|
}
|
|
}
|