0.12.0-15 Fix DVD Review
This commit is contained in:
@@ -4864,3 +4864,577 @@ body {
|
||||
justify-content: flex-end;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
/* ===== Converter Page ===== */
|
||||
|
||||
.converter-card-header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
gap: 0.5rem;
|
||||
padding: 1rem 1.25rem 0;
|
||||
}
|
||||
|
||||
.converter-card-title {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.5rem;
|
||||
font-size: 1rem;
|
||||
font-weight: 700;
|
||||
color: var(--text-color, #333);
|
||||
}
|
||||
|
||||
.converter-jobs-group-label {
|
||||
margin: 0 0 0.6rem;
|
||||
font-size: 0.78rem;
|
||||
font-weight: 600;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.05em;
|
||||
color: var(--rip-muted, #6a4d38);
|
||||
}
|
||||
|
||||
.converter-jobs-empty-hint {
|
||||
margin: 0;
|
||||
color: var(--rip-muted, #6a4d38);
|
||||
}
|
||||
|
||||
/* ===== File Explorer (Klangkiste 1:1 mit Ripster-Farben) ===== */
|
||||
|
||||
/* Äußere Hülle */
|
||||
.cfx-wrap {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0;
|
||||
}
|
||||
|
||||
/* Obere Infozeile: rawdir + Aktualisieren */
|
||||
.cfx-top-bar {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.5rem;
|
||||
padding: 0.45rem 0.75rem;
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
|
||||
.cfx-rawdir {
|
||||
flex: 1;
|
||||
font-size: 0.75rem;
|
||||
color: var(--rip-muted, #6a4d38);
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
/* ── Klangkiste Explorer-Layout ───────────────────────────────────────────── */
|
||||
|
||||
.explorer {
|
||||
display: grid;
|
||||
grid-template-columns: 260px 1fr;
|
||||
grid-template-rows: 1fr auto;
|
||||
gap: 0;
|
||||
border: 1px solid var(--rip-border, #d9bc8d);
|
||||
border-radius: 12px;
|
||||
overflow-x: auto;
|
||||
overflow-y: hidden;
|
||||
background: var(--rip-panel, #fffaf1);
|
||||
min-height: 260px;
|
||||
align-items: stretch;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
.explorer-sidebar {
|
||||
grid-row: 1;
|
||||
padding: 12px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 10px;
|
||||
background: var(--rip-panel-soft, #fdf5e7);
|
||||
border-right: 1px solid var(--rip-border, #d9bc8d);
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.explorer-toolbar,
|
||||
.sidebar-toolbar {
|
||||
height: 40px;
|
||||
min-height: 40px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.sidebar-toolbar {
|
||||
border: 1px solid var(--rip-border, #d9bc8d);
|
||||
background: var(--rip-cream-50, #fffaf0);
|
||||
padding: 0 10px;
|
||||
border-radius: 8px;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.sidebar-tree {
|
||||
border: 1px solid var(--rip-border, #d9bc8d);
|
||||
border-radius: 10px;
|
||||
background: var(--rip-cream-50, #fffaf0);
|
||||
padding: 8px;
|
||||
overflow: auto;
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.sidebar-search {
|
||||
flex: 1;
|
||||
width: 100%;
|
||||
border: 1px solid var(--rip-border, #d9bc8d);
|
||||
background: var(--rip-cream-50, #fffaf0);
|
||||
border-radius: 8px;
|
||||
padding: 0 10px;
|
||||
font-size: 13px;
|
||||
color: var(--rip-ink, #2f180f);
|
||||
min-width: 0;
|
||||
height: 28px;
|
||||
line-height: 28px;
|
||||
outline: none;
|
||||
}
|
||||
.sidebar-search:focus {
|
||||
border-color: var(--rip-gold-400, #d49c56);
|
||||
box-shadow: 0 0 0 2px rgba(212, 156, 86, 0.2);
|
||||
}
|
||||
|
||||
.explorer-main {
|
||||
grid-row: 1;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 10px;
|
||||
padding: 12px 14px 14px;
|
||||
background: var(--rip-panel, #fffaf1);
|
||||
height: 100%;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.explorer-toolbar {
|
||||
flex-wrap: wrap;
|
||||
padding: 0 10px;
|
||||
border: 1px solid var(--rip-border, #d9bc8d);
|
||||
border-radius: 10px;
|
||||
background: var(--rip-cream-50, #fffaf0);
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.explorer-toolbar .icon-button {
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
}
|
||||
|
||||
.explorer-path {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 0;
|
||||
font-size: 13px;
|
||||
color: var(--rip-muted, #6a4d38);
|
||||
align-items: center;
|
||||
line-height: 1;
|
||||
flex: 1;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.breadcrumb-root {
|
||||
font-weight: 600;
|
||||
color: var(--rip-ink, #2f180f);
|
||||
}
|
||||
|
||||
.path-link {
|
||||
background: transparent;
|
||||
border: none;
|
||||
color: var(--rip-ink, #2f180f);
|
||||
cursor: pointer;
|
||||
padding: 0;
|
||||
font-size: 13px;
|
||||
font-weight: 600;
|
||||
}
|
||||
.path-link:hover,
|
||||
.path-link:focus { background: transparent; color: var(--primary-color, #8e4d2d); outline: none; text-decoration: underline; }
|
||||
|
||||
.toolbar-actions {
|
||||
margin-left: auto;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
}
|
||||
|
||||
.explorer-list {
|
||||
border: 1px solid var(--rip-border, #d9bc8d);
|
||||
border-radius: 10px;
|
||||
background: var(--rip-cream-50, #fffaf0);
|
||||
overflow: auto;
|
||||
flex: 1;
|
||||
min-height: 0;
|
||||
}
|
||||
|
||||
.explorer-row {
|
||||
display: grid;
|
||||
grid-template-columns: 28px 2fr repeat(2, minmax(80px, 1fr));
|
||||
gap: 10px;
|
||||
align-items: center;
|
||||
padding: 8px 12px;
|
||||
border-bottom: 1px solid var(--rip-border, #d9bc8d);
|
||||
font-size: 13px;
|
||||
cursor: pointer;
|
||||
user-select: none;
|
||||
transition: background 0.08s, border-left 0.08s;
|
||||
}
|
||||
.explorer-row:hover:not(.header):not(.footer) { background: var(--rip-cream-100, #fbf2df); }
|
||||
.explorer-row.selected {
|
||||
background: color-mix(in srgb, var(--primary-color) 10%, transparent);
|
||||
border-left: 3px solid var(--primary-color);
|
||||
padding-left: 9px;
|
||||
}
|
||||
.explorer-row.header {
|
||||
font-size: 11px;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.08em;
|
||||
color: var(--rip-muted, #6a4d38);
|
||||
background: var(--rip-panel-soft, #fdf5e7);
|
||||
cursor: default;
|
||||
border-left: 3px solid transparent;
|
||||
position: sticky;
|
||||
top: 0;
|
||||
z-index: 1;
|
||||
}
|
||||
.explorer-row.footer {
|
||||
background: var(--rip-panel-soft, #fdf5e7);
|
||||
cursor: default;
|
||||
border-left: 3px solid transparent;
|
||||
}
|
||||
.explorer-row:last-child { border-bottom: none; }
|
||||
|
||||
.row-name {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.row-icon {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
color: var(--rip-brown-700, #6f3922);
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.row-checkbox {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
.row-checkbox input[type="checkbox"] {
|
||||
width: 15px;
|
||||
height: 15px;
|
||||
cursor: pointer;
|
||||
accent-color: var(--primary-color);
|
||||
border-radius: 3px;
|
||||
}
|
||||
.explorer-row.header .row-checkbox { pointer-events: none; }
|
||||
|
||||
.footer-count {
|
||||
font-weight: 600;
|
||||
color: var(--rip-ink, #2f180f);
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.explorer-footer {
|
||||
grid-column: 1 / -1;
|
||||
padding: 8px 14px;
|
||||
font-size: 12px;
|
||||
color: var(--rip-muted, #6a4d38);
|
||||
border-top: 1px solid var(--rip-border, #d9bc8d);
|
||||
background: var(--rip-panel-soft, #fdf5e7);
|
||||
border-radius: 0 0 11px 11px;
|
||||
}
|
||||
|
||||
/* ── Icon-Button (wie Klangkiste) ────────────────────────────────────────── */
|
||||
|
||||
.icon-button {
|
||||
border: 1px solid var(--rip-border, #d9bc8d);
|
||||
background: var(--rip-panel, #fffaf1);
|
||||
color: var(--rip-ink, #2f180f);
|
||||
border-radius: 8px;
|
||||
padding: 0;
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
cursor: pointer;
|
||||
line-height: 1;
|
||||
font-size: 14px;
|
||||
transition: background 0.1s;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
.icon-button:hover:not(:disabled) { background: var(--rip-cream-100, #fbf2df); }
|
||||
.icon-button.danger {
|
||||
border-color: rgba(239, 68, 68, 0.55);
|
||||
color: rgb(220, 38, 38);
|
||||
background: rgba(239, 68, 68, 0.08);
|
||||
}
|
||||
.icon-button.danger:hover:not(:disabled) { background: rgba(239, 68, 68, 0.15); }
|
||||
.icon-button:disabled { cursor: not-allowed; opacity: 0.4; }
|
||||
|
||||
/* ── Ordnerbaum ──────────────────────────────────────────────────────────── */
|
||||
|
||||
.tree-node { display: flex; flex-direction: column; gap: 2px; }
|
||||
|
||||
.depth-1 .tree-row { margin-left: 16px; }
|
||||
.depth-2 .tree-row { margin-left: 32px; }
|
||||
.depth-3 .tree-row { margin-left: 48px; }
|
||||
.depth-4 .tree-row { margin-left: 64px; }
|
||||
.depth-5 .tree-row { margin-left: 80px; }
|
||||
|
||||
.tree-row {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
padding: 6px 8px;
|
||||
border-radius: 8px;
|
||||
cursor: pointer;
|
||||
color: var(--rip-muted, #6a4d38);
|
||||
user-select: none;
|
||||
}
|
||||
.tree-row:hover { background: var(--rip-cream-100, #fbf2df); color: var(--rip-ink, #2f180f); }
|
||||
.tree-row.active { background: var(--primary-50, #fef6ec); color: var(--rip-ink, #2f180f); font-weight: 600; }
|
||||
|
||||
.tree-caret {
|
||||
border: none;
|
||||
background: transparent;
|
||||
color: var(--rip-muted, #6a4d38);
|
||||
padding: 0;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 18px;
|
||||
flex: 0 0 18px;
|
||||
cursor: pointer;
|
||||
}
|
||||
.tree-caret.disabled { width: 18px; flex: 0 0 18px; }
|
||||
|
||||
.tree-icon.folder { color: var(--rip-brown-700, #6f3922); }
|
||||
|
||||
.tree-label { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
|
||||
|
||||
/* Selection bar */
|
||||
.converter-selection-bar {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
gap: 0.75rem;
|
||||
margin-top: 0.75rem;
|
||||
padding: 0.5rem 0.75rem;
|
||||
background: var(--primary-50, #fef6ec);
|
||||
border: 1px solid var(--rip-border, #d9bc8d);
|
||||
border-radius: 6px;
|
||||
font-size: 0.85rem;
|
||||
}
|
||||
|
||||
/* ===== Upload Panel ===== */
|
||||
|
||||
.converter-upload-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.75rem;
|
||||
}
|
||||
|
||||
.converter-upload-dropzone {
|
||||
border: 2px dashed var(--rip-border, #d9bc8d);
|
||||
border-radius: 8px;
|
||||
padding: 1.25rem 1rem;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
gap: 0.75rem;
|
||||
background: var(--rip-panel, #fffaf1);
|
||||
transition: border-color 0.15s, background 0.15s;
|
||||
}
|
||||
|
||||
.converter-upload-dropzone.drag-over {
|
||||
border-color: var(--primary-color, #8e4d2d);
|
||||
background: var(--primary-50, #fef6ec);
|
||||
}
|
||||
|
||||
.converter-upload-hint {
|
||||
text-align: center;
|
||||
font-size: 0.85rem;
|
||||
color: var(--rip-muted, #6a4d38);
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
.converter-upload-buttons {
|
||||
display: flex;
|
||||
gap: 0.5rem;
|
||||
flex-wrap: wrap;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.converter-upload-status {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.4rem;
|
||||
padding: 0.5rem 0.75rem;
|
||||
background: var(--rip-panel-soft, #fdf5e7);
|
||||
border: 1px solid var(--rip-border, #d9bc8d);
|
||||
border-radius: 6px;
|
||||
}
|
||||
|
||||
.converter-upload-status-head {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.5rem;
|
||||
font-size: 0.85rem;
|
||||
}
|
||||
|
||||
/* ===== Job Card ===== */
|
||||
|
||||
.converter-jobs-list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.75rem;
|
||||
}
|
||||
|
||||
.converter-jobs-empty {
|
||||
padding: 1rem 0;
|
||||
color: var(--rip-muted, #6a4d38);
|
||||
}
|
||||
|
||||
.converter-job-card {
|
||||
border: 1px solid var(--rip-border, #d9bc8d);
|
||||
border-radius: 8px;
|
||||
padding: 0.75rem 1rem;
|
||||
background: var(--rip-panel, #fffaf1);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.5rem;
|
||||
}
|
||||
|
||||
.converter-job-card.status-done {
|
||||
border-color: var(--green-300, #74c69d);
|
||||
background: #f6fff9;
|
||||
}
|
||||
|
||||
.converter-job-card.status-error {
|
||||
border-color: var(--red-300, #ff8080);
|
||||
background: #fff5f5;
|
||||
}
|
||||
|
||||
.converter-job-card.status-cancelled {
|
||||
opacity: 0.7;
|
||||
}
|
||||
|
||||
.converter-job-card-header {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.25rem;
|
||||
}
|
||||
|
||||
.converter-job-card-title-row {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.4rem;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.converter-job-card-title {
|
||||
font-weight: 600;
|
||||
font-size: 0.9rem;
|
||||
flex: 1;
|
||||
min-width: 0;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.converter-job-card-meta {
|
||||
font-size: 0.78rem;
|
||||
color: var(--rip-muted, #6a4d38);
|
||||
}
|
||||
|
||||
.converter-job-card-progress {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.25rem;
|
||||
}
|
||||
|
||||
.converter-job-card-progress-meta {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
font-size: 0.75rem;
|
||||
color: var(--rip-muted, #6a4d38);
|
||||
}
|
||||
|
||||
.converter-job-card-error {
|
||||
color: var(--red-600, #c62828);
|
||||
font-size: 0.8rem;
|
||||
background: #fff0f0;
|
||||
padding: 0.25rem 0.5rem;
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
.converter-job-card-output {
|
||||
font-size: 0.78rem;
|
||||
color: var(--rip-muted, #6a4d38);
|
||||
}
|
||||
|
||||
.converter-job-card-actions {
|
||||
display: flex;
|
||||
gap: 0.5rem;
|
||||
flex-wrap: wrap;
|
||||
margin-top: 0.25rem;
|
||||
}
|
||||
|
||||
/* Inline-Konfiguration für READY_TO_START Jobs */
|
||||
.converter-job-card.is-ready {
|
||||
border-color: var(--amber-400, #f59e0b);
|
||||
background: var(--surface-50, #fafaf9);
|
||||
}
|
||||
|
||||
.cjc-config {
|
||||
margin-top: 0.75rem;
|
||||
padding-top: 0.75rem;
|
||||
border-top: 1px solid var(--surface-200, #e5e7eb);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.75rem;
|
||||
}
|
||||
|
||||
.cjc-config-row {
|
||||
display: flex;
|
||||
gap: 1rem;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.cjc-config-field {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.3rem;
|
||||
flex: 1;
|
||||
min-width: 160px;
|
||||
}
|
||||
|
||||
.cjc-config-label {
|
||||
font-size: 0.78rem;
|
||||
font-weight: 600;
|
||||
color: var(--text-color-secondary);
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.02em;
|
||||
}
|
||||
|
||||
.cjc-config-value {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.4rem;
|
||||
padding-top: 0.1rem;
|
||||
}
|
||||
|
||||
.cjc-config-actions {
|
||||
display: flex;
|
||||
gap: 0.5rem;
|
||||
justify-content: flex-end;
|
||||
padding-top: 0.25rem;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user