368 lines
30 KiB
CSS
368 lines
30 KiB
CSS
/* rclone-jav options page styles
|
|
* Extracted from options.html step 2 of the console consolidation refactor.
|
|
* See mockups/console-consolidation-claude.html for sequence + rationale.
|
|
* Per-pane split happens later (step 6) alongside per-pane JS extraction. */
|
|
|
|
body { font-family: -apple-system, Segoe UI, sans-serif; background: #0f0f0f; color: #ddd; margin: 0; padding: 24px; }
|
|
.shell {
|
|
max-width: 1040px; margin: 0 auto;
|
|
background: #1a1a1a; border: 1px solid #2a2a2a; border-radius: 8px; overflow: hidden;
|
|
box-shadow: 0 10px 40px rgba(0,0,0,.4);
|
|
}
|
|
.layout { display: grid; grid-template-columns: 220px 1fr; min-height: 620px; }
|
|
|
|
/* sidebar */
|
|
.side { background: #131313; border-right: 1px solid #222; padding: 14px 0; position: sticky; top: 0; align-self: start; height: 100vh; max-height: 720px; overflow-y: auto; }
|
|
.side .brand { padding: 2px 22px 16px; border-bottom: 1px solid #202020; margin-bottom: 14px; }
|
|
.side .brand strong { display:block; color:#f3f3f3; font-size:14px; letter-spacing:.2px; }
|
|
.side .brand span { display:block; color:#666; font-size:11px; margin-top:3px; }
|
|
.side .group { padding: 0 14px; margin-bottom: 16px; }
|
|
.side .group:last-child { margin-bottom: 0; }
|
|
.side .gtitle { font-size: 10px; color: #555; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 6px; padding: 0 8px; }
|
|
.side .item { padding: 8px 10px; font-size: 13px; color: #aaa; cursor: pointer; border-radius: 5px; user-select: none; display: flex; align-items: center; gap: 9px; }
|
|
.side .item .icon { width: 16px; opacity: 0.72; text-align:center; font-size:12px; }
|
|
.side .item:hover { background: #1f1f1f; color: #ddd; }
|
|
.side .item.active { background: #2a2a2a; color: #fff; box-shadow: inset 2px 0 #6ec1ff; }
|
|
.side .item.danger { color: #faa; }
|
|
.side .item.danger:hover { background: #2a1a1a; }
|
|
.side .item.danger.active { background: #3a1a1a; color: #ffbbbb; }
|
|
|
|
/* main pane */
|
|
.main { padding: 26px 32px; overflow-y: auto; }
|
|
.pane-head { margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid #242424; }
|
|
.main h1 { margin: 0 0 5px; font-size: 19px; letter-spacing:.2px; }
|
|
.main .pdesc { color: #888; font-size: 12px; margin: 0; line-height: 1.5; max-width: 700px; }
|
|
.pane { display: none; }
|
|
.pane.active { display: block; }
|
|
|
|
/* common form bits */
|
|
label { display: flex; align-items: center; gap: 10px; padding: 7px 0; font-size: 13px; cursor: pointer; }
|
|
label .sublabel { color: #777; font-size: 11px; display: block; margin-top: 2px; }
|
|
input[type=text], textarea {
|
|
width: 100%; background: #0d0d0d; color: #ddd; border: 1px solid #2a2a2a;
|
|
padding: 8px 10px; box-sizing: border-box; border-radius: 4px;
|
|
font-family: Consolas, monospace; font-size: 12px;
|
|
}
|
|
textarea { min-height: 80px; resize: vertical; }
|
|
input[type=text]:focus, textarea:focus { border-color: #ff6f3c; outline: none; }
|
|
.fieldset { background: #161616; border: 1px solid #2a2a2a; border-radius: 5px; padding: 13px 15px; margin-bottom: 12px; }
|
|
.fieldset .ftitle { font-size: 11px; color: #999; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; font-weight: 650; }
|
|
.help { color: #777; font-size: 11px; margin: 4px 0 10px; line-height: 1.4; }
|
|
.help code { background: #0d0d0d; padding: 2px 4px; border-radius: 3px; font-size: 11px; }
|
|
select, input[type=number], input[type=color] { background:#0d0d0d; color:#ddd; border:1px solid #2a2a2a; border-radius:4px; font-family:Consolas,monospace; font-size:12px; }
|
|
select { padding: 6px 8px; }
|
|
input[type=number] { padding:6px 8px; }
|
|
.setting-list { display:grid; gap: 2px; }
|
|
.setting-list label { border-bottom: 1px solid #222; padding: 9px 0; }
|
|
.setting-list label:last-child { border-bottom: 0; }
|
|
.split-grid { display:grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
|
|
.button-row { display:flex; gap:8px; align-items:center; flex-wrap:wrap; }
|
|
.section-note { background:#101820; border:1px solid #24303a; color:#9dccff; border-radius:5px; padding:9px 11px; font-size:12px; line-height:1.45; margin-bottom:12px; }
|
|
.section-note.warn { background:#242410; border-color:#4a4420; color:#ffdd77; }
|
|
.section-note.danger { background:#2a1414; border-color:#5a2525; color:#ffb3b3; }
|
|
.mono-output { margin-top:10px; font-family:Consolas,monospace; font-size:11px; color:#aaa; line-height:1.5; overflow-wrap:anywhere; }
|
|
.compact-grid { display:grid; grid-template-columns: minmax(0, 1fr) auto; gap:8px; align-items:center; }
|
|
.chip-row { display:flex; gap:6px; align-items:center; flex-wrap:wrap; }
|
|
.chip-btn { padding: 4px 9px; font-size:11px; border-radius: 10px; }
|
|
.activity-filters { display:flex; gap:6px; align-items:center; flex-wrap:wrap; margin-top:9px; }
|
|
.activity-filter { padding:4px 10px; border-radius:12px; font-size:11px; }
|
|
.activity-filter.active { background:#1a2430; border-color:#36526a; color:#9dccff; }
|
|
.activity-entry { margin-top:8px; }
|
|
.activity-head { display:flex; align-items:center; gap:7px; flex-wrap:wrap; }
|
|
.activity-pill { border:1px solid #333; border-radius:11px; padding:2px 8px; font-size:10px; font-weight:700; letter-spacing:.04em; text-transform:uppercase; white-space:nowrap; }
|
|
.activity-pill.hit { background:#15351e; border-color:#285c38; color:#8ff0ae; }
|
|
.activity-pill.miss { background:#383315; border-color:#655a24; color:#ffe487; }
|
|
.activity-pill.no-id { background:#172839; border-color:#2d4f70; color:#9dccff; }
|
|
.activity-pill.paused { background:#292334; border-color:#493b62; color:#d0b5ff; }
|
|
.activity-pill.error { background:#3a1a1a; border-color:#722; color:#faa; }
|
|
.activity-meta { color:#aaa; }
|
|
/* Non-JAV files panel (skipped files in cache status) */
|
|
.nonjav-panel { margin-top: 8px; background: rgba(255,255,255,.02); border: 1px solid #1e1e2a; border-radius: 6px; overflow: hidden; }
|
|
.nonjav-panel-head { display: flex; align-items: center; gap: 8px; padding: 7px 12px; background: rgba(255,255,255,.03); border-bottom: 1px solid #1e1e2a; }
|
|
.nonjav-panel-title { font-size: 12px; color: #b0b0c8; flex: 1; }
|
|
.nonjav-del-all { font-size: 11px; padding: 3px 10px; border-radius: 10px; background: rgba(248,113,113,.12); border: 1px solid rgba(248,113,113,.25); color: #fca5a5; cursor: pointer; }
|
|
.nonjav-del-all:hover { background: rgba(248,113,113,.22); }
|
|
.nonjav-del-all:disabled { opacity: 0.4; cursor: default; }
|
|
.nonjav-list { max-height: 220px; overflow-y: auto; scrollbar-width: thin; scrollbar-color: #2a2a3a #0d0d1a; }
|
|
.nonjav-item { display: flex; align-items: center; gap: 8px; padding: 5px 12px; border-bottom: 1px solid rgba(255,255,255,.04); font-size: 11px; }
|
|
.nonjav-item:last-child { border-bottom: none; }
|
|
.nonjav-item.deleted { opacity: 0.35; pointer-events: none; }
|
|
.nonjav-ext { font-family: Consolas, monospace; font-size: 10px; padding: 1px 5px; border-radius: 3px; background: rgba(255,255,255,.06); color: #888; flex-shrink: 0; min-width: 36px; text-align: center; }
|
|
.nonjav-path { flex: 1; font-family: Consolas, monospace; color: #9090b0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
|
|
.nonjav-del-one { font-size: 10px; padding: 2px 8px; border-radius: 8px; background: rgba(248,113,113,.08); border: 1px solid rgba(248,113,113,.2); color: #f87171; cursor: pointer; flex-shrink: 0; }
|
|
.nonjav-del-one:hover { background: rgba(248,113,113,.18); }
|
|
.nonjav-status { font-size: 11px; padding: 5px 12px; color: #8888aa; }
|
|
.muted { color:#777; font-size:11px; }
|
|
.disabled-soft { opacity:.48; }
|
|
.danger-zone { border-color:#5a2525; background:#201414; }
|
|
.scan-job-head { display:flex; gap:8px; align-items:center; flex-wrap:wrap; margin-bottom:8px; }
|
|
.scan-pill { border-radius:10px; padding:2px 8px; background:#1a2430; color:#9dccff; border:1px solid #2d4258; font-size:10px; font-weight:700; text-transform:uppercase; }
|
|
.scan-pill.ok { background:#1a3a1a; color:#afa; border-color:#2e5a2e; }
|
|
.scan-pill.fail { background:#3a1a1a; color:#faa; border-color:#722; }
|
|
.scan-remote { border-top:1px solid #242424; padding:7px 0; }
|
|
.scan-remote:first-of-type { border-top:0; }
|
|
.scan-track { height:4px; margin-top:5px; background:#202020; border-radius:3px; overflow:hidden; }
|
|
.scan-fill { height:100%; background:#6ec1ff; min-width:0; }
|
|
|
|
/* buttons */
|
|
button { background: #2a2a2a; color: #ddd; border: 1px solid #3a3a3a; border-radius: 4px; padding: 6px 14px; font-size: 12px; cursor: pointer; font-family: inherit; }
|
|
button:hover { background: #333; }
|
|
button.primary { background: #1a3a1a; border-color: #2e5a2e; color: #afa; font-weight: 600; letter-spacing: 0.3px; }
|
|
button.primary:hover { background: #235023; }
|
|
button.danger { background: #511; border-color: #722; color: #faa; font-weight: 600; letter-spacing: 0.5px; }
|
|
button.danger:hover { background: #722; }
|
|
.actions { display: flex; gap: 8px; align-items: center; padding-top: 14px; border-top: 1px solid #222; margin-top: 20px; position: sticky; bottom: 0; background: linear-gradient(180deg, rgba(26,26,26,0), #1a1a1a 30%); }
|
|
.actions .saved { color: #afa; font-size: 12px; margin-left: 8px; opacity: 0; transition: opacity .2s; }
|
|
.actions .saved.show { opacity: 1; }
|
|
|
|
/* adapter table */
|
|
.adapters { width: 100%; border-collapse: collapse; }
|
|
.adapters th, .adapters td { padding: 6px 6px; text-align: left; font-size: 12px; border-bottom: 1px solid #232323; vertical-align: middle; }
|
|
.adapters th { color: #888; font-weight: normal; }
|
|
.adapters th:nth-child(1), .adapters td:nth-child(1) { width: 200px; }
|
|
.adapters th:nth-child(3), .adapters td:nth-child(3) { width: 32px; text-align: right; }
|
|
.adapters td input { width: 100%; height: 28px; padding: 4px 6px; }
|
|
.adapters button.del { background: #511; border: 1px solid #722; color: #faa; padding: 0; width: 26px; height: 26px; line-height: 24px; font-size: 14px; border-radius: 3px; }
|
|
|
|
/* diagnostics rows */
|
|
.diag-row { padding: 6px 10px; border-radius: 4px; margin-bottom: 4px; font-size: 12px; display: grid; grid-template-columns: 30px 150px 1fr; gap: 10px; align-items: start; }
|
|
.diag-row.ok { background: #1a3a1a; color: #afa; }
|
|
.diag-row.warn { background: #3a3a1a; color: #ffa; }
|
|
.diag-row.fail { background: #3a1a1a; color: #faa; }
|
|
.diag-row.info { background: #1a2430; color: #9dccff; }
|
|
.diag-row .icon { font-weight: 700; }
|
|
.diag-row .name { font-weight: 600; }
|
|
.diag-row .detail { color: rgba(255,255,255,0.72); font-family: Consolas, monospace; font-size: 11px; overflow-wrap: anywhere; }
|
|
.diag-row details { margin: 0; }
|
|
.diag-row summary { cursor: pointer; color: rgba(255,255,255,0.85); }
|
|
.diag-row pre { white-space: pre-wrap; margin: 6px 0 0; font-family: Consolas, monospace; font-size: 11px; color: rgba(255,255,255,0.72); }
|
|
.diag-action { margin-top: 6px; display: flex; gap: 6px; flex-wrap: wrap; }
|
|
.diag-action button { padding: 3px 8px; font-size: 11px; }
|
|
|
|
/* radio chips */
|
|
.radio-group { display: flex; gap: 6px; margin: 10px 0; }
|
|
.radio-group label { background: #161616; border: 1px solid #2a2a2a; padding: 6px 12px; border-radius: 4px; font-size: 12px; padding-top: 6px; padding-bottom: 6px; }
|
|
.radio-group label input { margin: 0 6px 0 0; }
|
|
.radio-group label.selected { background: #1a3a1a; border-color: #2e5a2e; color: #afa; }
|
|
.radio-group label.selected.danger { background: #3a1a1a; border-color: #722; color: #faa; }
|
|
|
|
code { background: #0d0d0d; padding: 2px 5px; border-radius: 3px; font-size: 11px; font-family: Consolas, monospace; }
|
|
|
|
/* Overlay horizontal tabs */
|
|
.overlay-tabs { display: flex; gap: 0; margin-bottom: 16px; border-bottom: 1px solid #2a2a2a; }
|
|
.otab { background: none; border: none; border-bottom: 2px solid transparent; color: #666; font-size: 13px; font-weight: 600; padding: 8px 18px; cursor: pointer; border-radius: 0; margin-bottom: -1px; letter-spacing: 0.3px; transition: color .15s, border-color .15s; }
|
|
.otab:hover { color: #aaa; background: none; }
|
|
.otab.active { color: #ddd; border-bottom-color: #6ec1ff; }
|
|
.otab-panel { display: none; }
|
|
.otab-panel.active { display: block; }
|
|
.modal-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,.72); z-index: 30; display: none; align-items: center; justify-content: center; padding: 24px; }
|
|
.modal-backdrop.open { display: flex; }
|
|
.modal { width: min(860px, 100%); max-height: min(760px, calc(100vh - 48px)); background:#161616; border:1px solid #343434; border-radius:8px; box-shadow:0 18px 80px rgba(0,0,0,.6); display:flex; flex-direction:column; overflow:hidden; }
|
|
.modal-head, .modal-actions { display:flex; gap:10px; align-items:center; justify-content:space-between; padding:14px 16px; border-bottom:1px solid #262626; }
|
|
.modal-actions { border-bottom:0; border-top:1px solid #262626; justify-content:flex-end; }
|
|
.modal-title { font-size:15px; font-weight:650; color:#f1f1f1; }
|
|
.modal-subtitle { margin-top:3px; color:#777; font-size:11px; font-family:Consolas,monospace; overflow-wrap:anywhere; }
|
|
.modal-body { padding:14px 16px; overflow:auto; }
|
|
.modal-help { color:#888; font-size:12px; line-height:1.45; margin-bottom:12px; }
|
|
.modal-field { margin-bottom:12px; }
|
|
.modal-field > label { display:block; color:#bbb; font-size:12px; padding:0; margin-bottom:5px; cursor:default; }
|
|
.modal-field .prof-remote-group { background:#0a0a0a; border:1px solid #222; border-radius:4px; padding:8px 10px; }
|
|
.profile-card { background:#161616; border:1px solid #2a2a2a; border-radius:5px; padding:12px 14px; margin-bottom:10px; display:grid; grid-template-columns:minmax(0,1fr) auto; gap:12px; align-items:start; }
|
|
.profile-card .name { color:#f1f1f1; font-weight:650; margin-bottom:5px; }
|
|
.profile-card .roots { color:#888; font-family:Consolas,monospace; font-size:11px; line-height:1.5; overflow-wrap:anywhere; }
|
|
.profile-card .actions { margin:0; display:flex; gap:6px; align-items:center; }
|
|
.profile-card .actions button { padding:4px 9px; font-size:11px; }
|
|
.modal-confirm { background:#201414; border:1px solid #5a2525; border-radius:5px; color:#ffb3b3; font-size:12px; line-height:1.5; padding:11px 12px; }
|
|
.part-detector-list { display:grid; gap:9px; }
|
|
.part-detector-row { background:#101010; border:1px solid #252525; border-radius:5px; padding:10px; }
|
|
.part-detector-row.builtin { background:#101820; border-color:#24303a; }
|
|
.part-detector-head { display:grid; grid-template-columns:minmax(0,1fr) 28px; gap:8px; align-items:center; }
|
|
.part-detector-row.builtin .part-detector-head { grid-template-columns:minmax(0,1fr) auto; }
|
|
.part-detector-head input { min-width:0; }
|
|
.part-detector-head input:read-only { color:#9dccff; }
|
|
.part-detector-head button { background:#511; border-color:#722; color:#faa; width:28px; height:28px; padding:0; font-size:14px; }
|
|
.part-detector-kind { color:#9dccff; border:1px solid #314453; border-radius:10px; padding:2px 8px; font-size:10px; font-weight:650; white-space:nowrap; }
|
|
.part-detector-feedback { margin-top:7px; font-size:11px; line-height:1.45; color:#888; }
|
|
.part-detector-feedback .ok { color:#afa; }
|
|
.part-detector-feedback .warn { color:#ffdd77; }
|
|
.part-detector-feedback .fail { color:#faa; }
|
|
.part-detector-match { color:#9dccff; font-family:Consolas,monospace; margin-top:3px; overflow-wrap:anywhere; }
|
|
.skip-summary { display:flex; gap:6px; flex-wrap:wrap; margin-bottom:12px; }
|
|
.skip-summary span { background:#242410; border:1px solid #4a4420; color:#ffdd77; border-radius:10px; padding:3px 8px; font-size:11px; }
|
|
.skip-row { border-top:1px solid #242424; padding:9px 0; }
|
|
.skip-row:first-of-type { border-top:0; }
|
|
.skip-row .name { color:#ddd; font-family:Consolas,monospace; font-size:12px; }
|
|
.skip-row .reason { color:#ffdd77; font-size:11px; margin-top:3px; }
|
|
.skip-row .path { color:#777; font-family:Consolas,monospace; font-size:11px; margin-top:3px; overflow-wrap:anywhere; }
|
|
.cache-freshness { display:flex; gap:14px; align-items:center; flex-wrap:wrap; margin:8px 0 10px; }
|
|
.cache-freshness label { display:inline-flex; gap:8px; align-items:center; padding:0; white-space:nowrap; cursor:default; }
|
|
.cache-freshness input { width:66px; }
|
|
.cache-freshness .sublabel { max-width:340px; margin:0; line-height:1.35; }
|
|
|
|
/* ── Duplicate Review — Variant 9 (Frosted Modern) ─────────────────── */
|
|
#dupe-review-modal .modal { background: linear-gradient(135deg, #0f0f1a 0%, #0d1117 100%); border-color: #2a2a3a; width: 65vw; }
|
|
#dupe-review-modal .modal-head { background: linear-gradient(90deg, #12122a, #0d0d1a); border-bottom-color: #1e1e3a; }
|
|
#dupe-review-modal .modal-title { color: #e8e8ff; }
|
|
#dupe-review-modal .modal-subtitle { color: #8888aa; font-family: system-ui, sans-serif; }
|
|
#dupe-review-modal .modal-head button { color: #6060aa; border-color: #2a2a4a; }
|
|
#dupe-review-modal .modal-head button:hover { color: #b0b0d0; background: rgba(255,255,255,.05); }
|
|
#dupe-review-modal .modal-actions { border-top-color: #1a1a2a; background: rgba(0,0,0,.3); }
|
|
#dupe-review-modal .modal-actions button { background: rgba(255,255,255,.07); border-color: #3a3a5a; color: #c8c8e8; }
|
|
#dupe-review-modal .modal-actions button:hover { background: rgba(255,255,255,.13); }
|
|
#dupe-review-modal .modal-body { padding: 0; scrollbar-width: thin; scrollbar-color: #2a2a4a #0d0d1a; }
|
|
#dupe-review-modal .modal-body::-webkit-scrollbar { width: 6px; }
|
|
#dupe-review-modal .modal-body::-webkit-scrollbar-track { background: #0d0d1a; }
|
|
#dupe-review-modal .modal-body::-webkit-scrollbar-thumb { background: #2a2a4a; border-radius: 3px; }
|
|
#dupe-review-modal .modal-body::-webkit-scrollbar-thumb:hover { background: #3a3a6a; }
|
|
|
|
.dr-stats { display: flex; border-bottom: 1px solid #1e1e32; }
|
|
.dr-stat { flex: 1; padding: 11px 16px; border-right: 1px solid #1e1e32; }
|
|
.dr-stat:last-child { border-right: none; }
|
|
.dr-stat .val { font-size: 17px; font-weight: 700; color: #fff; }
|
|
.dr-stat .val.red { color: #f87171; }
|
|
.dr-stat .val.blue { color: #60a5fa; }
|
|
.dr-stat .key { font-size: 10px; color: #aaaacc; margin-top: 2px; text-transform: uppercase; letter-spacing: .07em; }
|
|
|
|
.dr-roots { font-size: 12px; color: #9999bb; padding: 6px 16px; border-bottom: 1px solid #1a1a2a; font-family: Consolas, monospace; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
|
|
|
|
.dr-body { padding: 12px; display: flex; flex-direction: column; gap: 8px; }
|
|
|
|
.dr-card-wrap { display: flex; align-items: stretch; }
|
|
.dr-card-wrap.dr-hidden { display: none; }
|
|
.dr-card-wrap.skipped .dr-card { opacity: 0.38; pointer-events: none; }
|
|
.dr-card-wrap.skipped .dr-skip-ear { background: rgba(251,191,36,.07); border-color: rgba(251,191,36,.25); }
|
|
.dr-card-wrap.skipped .dr-skip-ear span { color: #fbbf24; }
|
|
.dr-card-wrap.dr-risk .dr-card { border-color: rgba(251,191,36,.28); }
|
|
.dr-skip-ear { width: 24px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; cursor: pointer; background: rgba(255,255,255,.02); border: 1px solid rgba(255,255,255,.06); border-left: none; border-radius: 0 6px 6px 0; transition: background .15s; }
|
|
.dr-skip-ear:hover { background: rgba(255,255,255,.07); }
|
|
.dr-skip-ear span { font-size: 8px; color: #333; writing-mode: vertical-rl; letter-spacing: 1px; text-transform: uppercase; font-weight: 700; user-select: none; transition: color .15s; }
|
|
.dr-skip-ear:hover span { color: #777; }
|
|
.dr-card { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06); border-radius: 8px 0 0 8px; overflow: hidden; flex: 1; min-width: 0; }
|
|
.dr-card-head { display: flex; align-items: center; padding: 9px 14px; gap: 8px; border-bottom: 1px solid rgba(255,255,255,.04); }
|
|
.dr-card-id { font-weight: 700; color: #e0e0ff; font-family: Consolas, monospace; font-size: 13px; }
|
|
.dr-card-reclaim { margin-left: auto; font-size: 11px; color: #ff7171; background: rgba(255,100,100,.1); padding: 2px 9px; border-radius: 12px; white-space: nowrap; }
|
|
.dr-card-body { padding: 9px 14px; display: flex; flex-direction: column; gap: 7px; }
|
|
|
|
.dr-badge { font-size: 9px; font-weight: 700; letter-spacing: .07em; padding: 2px 7px; border-radius: 10px; white-space: nowrap; }
|
|
.dr-badge.b4k { background: rgba(96,165,250,.12); color: #60a5fa; border: 1px solid rgba(96,165,250,.2); }
|
|
.dr-badge.b1080 { background: rgba(167,139,250,.12); color: #a78bfa; border: 1px solid rgba(167,139,250,.2); }
|
|
.dr-badge.bcljav { background: rgba(74,222,128,.12); color: #4ade80; border: 1px solid rgba(74,222,128,.2); }
|
|
.dr-badge.bfmt { background: rgba(251,146,60,.12); color: #fb923c; border: 1px solid rgba(251,146,60,.2); }
|
|
.dr-badge.bmkv { background: rgba(251,146,60,.09); color: #fb923c; border: 1px solid rgba(251,146,60,.15); }
|
|
|
|
.dr-row { display: flex; align-items: center; gap: 10px; min-width: 0; }
|
|
.dr-tag { font-size: 9px; font-weight: 700; letter-spacing: .08em; padding: 2px 8px; border-radius: 10px; min-width: 58px; text-align: center; white-space: nowrap; flex-shrink: 0; }
|
|
.dr-tag.keep { background: rgba(74,222,128,.12); color: #4ade80; border: 1px solid rgba(74,222,128,.2); }
|
|
.dr-tag.del { background: rgba(248,113,113,.12); color: #f87171; border: 1px solid rgba(248,113,113,.2); }
|
|
.dr-tag.cat { background: rgba(96,165,250,.12); color: #93c5fd; border: 1px solid rgba(96,165,250,.2); }
|
|
.dr-path { font-family: Consolas, monospace; font-size: 11px; color: #9090b0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; flex: 1; min-width: 0; }
|
|
.dr-row.keep .dr-path { color: #c0c0e0; }
|
|
.dr-keep-reason { color:#8ff0ae; font-size:10px; font-family:Consolas,monospace; margin:-2px 0 2px 68px; }
|
|
.dr-risk-note { background:rgba(251,191,36,.09); border:1px solid rgba(251,191,36,.24); border-radius:5px; color:#ffe487; font-size:11px; line-height:1.42; margin:0 0 3px; padding:7px 9px; }
|
|
.dr-risk-note strong { color:#fff0b0; }
|
|
.dr-sz { font-size: 11px; font-weight: 600; white-space: nowrap; flex-shrink: 0; }
|
|
.dr-sz.keep { color: #4ade80; }
|
|
.dr-sz.del { color: #f87171; }
|
|
.dr-sz.cat { color: #93c5fd; }
|
|
|
|
/* Interactive delete row states */
|
|
.dr-row.del { cursor: default; }
|
|
.dr-row.del:hover { background: rgba(248,113,113,.03); }
|
|
.dr-row.del.confirmed { background: rgba(248,113,113,.08); }
|
|
.dr-row.del.confirmed .dr-tag.del { background: rgba(248,113,113,.25); color: #fca5a5; border-color: rgba(248,113,113,.4); }
|
|
.dr-row.del.confirmed .dr-path { text-decoration: line-through; text-decoration-color: #f87171; }
|
|
.dr-row.del.done { opacity: 0.35; pointer-events: none; }
|
|
.dr-row.del.done .dr-path { text-decoration: line-through; color: #555; }
|
|
.dr-row.del.error .dr-tag.del { background: rgba(251,191,36,.12); color: #fbbf24; border-color: rgba(251,191,36,.25); }
|
|
/* KEEP row — clickable to swap roles */
|
|
.dr-row.keep { cursor: pointer; user-select: none; }
|
|
.dr-row.keep:hover { background: rgba(248,113,113,.03); }
|
|
|
|
#dupe-review-execute { background: rgba(248,113,113,.15); border-color: rgba(248,113,113,.3); color: #fca5a5; }
|
|
#dupe-review-execute:hover:not(:disabled) { background: rgba(248,113,113,.25); }
|
|
#dupe-review-execute:disabled { opacity: 0.4; cursor: default; }
|
|
|
|
.dr-empty { padding: 20px 16px; color: #3a3a6a; font-size: 13px; }
|
|
.dr-skipped { padding: 8px 16px 12px; font-size: 11px; color: #bbbbdd; }
|
|
.dr-skipped-item { font-family: Consolas, monospace; font-size: 10px; color: #9999bb; margin-top: 3px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
|
|
|
|
/* Keep Ranking Panel */
|
|
.kr-panel { background: rgba(96,165,250,.04); border: 1px solid rgba(96,165,250,.12); border-radius: 8px; padding: 14px 16px; margin-top: 10px; }
|
|
.kr-info { font-size: 11px; color: #8888aa; margin-bottom: 12px; line-height: 1.5; }
|
|
.kr-info code { background: rgba(255,255,255,.07); padding: 1px 5px; border-radius: 3px; font-family: Consolas, monospace; color: #93c5fd; }
|
|
.kr-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
|
|
.kr-label { font-size: 12px; color: #b0b0c8; width: 140px; flex-shrink: 0; }
|
|
.kr-input { width: 70px; background: rgba(255,255,255,.06); border: 1px solid #2a2a3a; border-radius: 5px; color: #c0c0e0; font-size: 12px; padding: 4px 8px; }
|
|
.kr-input:focus { outline: none; border-color: rgba(96,165,250,.4); }
|
|
.kr-unit { font-size: 11px; color: #666; }
|
|
.kr-toggle { display: flex; align-items: center; gap: 6px; font-size: 12px; color: #b0b0c8; cursor: pointer; }
|
|
.kr-toggle input[type=checkbox] { accent-color: #60a5fa; }
|
|
.kr-fmt-list { display: flex; flex-direction: column; gap: 4px; min-width: 130px; }
|
|
.kr-fmt-item { display: flex; align-items: center; gap: 6px; background: rgba(255,255,255,.04); border: 1px solid #2a2a3a; border-radius: 5px; padding: 5px 8px; cursor: grab; font-size: 12px; color: #c0c0e0; font-family: Consolas, monospace; user-select: none; }
|
|
.kr-fmt-item.dragging { opacity: 0.4; }
|
|
.kr-fmt-item.drag-over { border-color: rgba(96,165,250,.5); background: rgba(96,165,250,.08); }
|
|
.kr-fmt-grip { color: #444; font-size: 10px; cursor: grab; }
|
|
.kr-fmt-priority { font-size: 10px; color: #555; margin-left: auto; }
|
|
.kr-save-row { display: flex; align-items: center; gap: 10px; margin-top: 14px; }
|
|
.kr-save-status { font-size: 11px; color: #8888aa; flex: 1; }
|
|
.kr-save-status.ok { color: #6ee7b7; }
|
|
.kr-save-status.err { color: #f87171; }
|
|
|
|
/* Library Issues modal */
|
|
#library-issues-modal .modal { background: linear-gradient(135deg, #0f0f1a 0%, #0d1117 100%); border-color: #2a2a3a; width: 65vw; }
|
|
#library-issues-modal .modal-head { background: linear-gradient(90deg, #12122a, #0d0d1a); border-bottom-color: #1e1e3a; }
|
|
#library-issues-modal .modal-title { color: #e8e8ff; }
|
|
#library-issues-modal .modal-subtitle { color: #8888aa; font-family: system-ui, sans-serif; }
|
|
#library-issues-modal .modal-head button { color: #6060aa; border-color: #2a2a4a; }
|
|
#library-issues-modal .modal-head button:hover { color: #b0b0d0; background: rgba(255,255,255,.05); }
|
|
#library-issues-modal .modal-actions { border-top-color: #1a1a2a; background: rgba(0,0,0,.3); }
|
|
#library-issues-modal .modal-actions button { background: rgba(255,255,255,.07); border-color: #3a3a5a; color: #c8c8e8; }
|
|
#library-issues-modal .modal-actions button:hover { background: rgba(255,255,255,.13); }
|
|
#library-issues-modal .modal-body { padding: 0; scrollbar-width: thin; scrollbar-color: #2a2a4a #0d0d1a; }
|
|
#library-issues-modal .modal-body::-webkit-scrollbar { width: 6px; }
|
|
#library-issues-modal .modal-body::-webkit-scrollbar-track { background: #0d0d1a; }
|
|
#library-issues-modal .modal-body::-webkit-scrollbar-thumb { background: #2a2a4a; border-radius: 3px; }
|
|
|
|
/* Library issue rows */
|
|
.li-section-head { padding: 8px 16px; font-size: 11px; font-weight: 600; color: #fbbf24; background: rgba(251,191,36,.06); border-bottom: 1px solid rgba(251,191,36,.12); }
|
|
.li-row { display: grid; grid-template-columns: auto 1fr auto auto; gap: 8px; align-items: center; padding: 7px 16px; border-bottom: 1px solid rgba(255,255,255,.04); }
|
|
.li-row:hover { background: rgba(255,255,255,.03); }
|
|
.li-tag { font-size: 10px; font-weight: 600; padding: 2px 7px; border-radius: 10px; white-space: nowrap; }
|
|
.li-tag.bracket { background: rgba(251,191,36,.12); color: #fbbf24; border: 1px solid rgba(251,191,36,.25); }
|
|
.li-tag.nohyphen { background: rgba(167,139,250,.12); color: #c4b5fd; border: 1px solid rgba(167,139,250,.25); }
|
|
.li-tag.done { background: rgba(74,222,128,.12); color: #4ade80; border: 1px solid rgba(74,222,128,.25); }
|
|
.li-tag.conflict { background: rgba(248,113,113,.12); color: #f87171; border: 1px solid rgba(248,113,113,.25); }
|
|
.li-names { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
|
|
.li-old { font-family: Consolas, monospace; font-size: 11px; color: #8888aa; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
|
|
.li-arrow { font-size: 11px; color: #4ade80; }
|
|
.li-new { font-family: Consolas, monospace; font-size: 11px; color: #c0c0e0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
|
|
.li-sz { font-size: 11px; color: #6060aa; white-space: nowrap; }
|
|
.li-rename-btn { font-size: 11px; padding: 3px 10px; border-radius: 5px; border: 1px solid #3a3a5a; background: rgba(255,255,255,.06); color: #c8c8e8; cursor: pointer; white-space: nowrap; }
|
|
.li-rename-btn:hover:not(:disabled) { background: rgba(255,255,255,.12); }
|
|
.li-rename-btn:disabled { opacity: 0.4; cursor: default; }
|
|
.li-empty { padding: 24px 16px; color: #4ade80; font-size: 13px; }
|
|
.li-stats { padding: 10px 16px; font-size: 12px; color: #8888aa; border-bottom: 1px solid rgba(255,255,255,.06); }
|
|
.li-stats b { color: #c8c8e8; }
|
|
|
|
/* Dupe Review filter bar */
|
|
.dr-filter-bar { position: sticky; top: 0; z-index: 5; display: flex; flex-wrap: wrap; align-items: center; gap: 5px; padding: 9px 14px; background: #0d0d1a; border-bottom: 1px solid #1e1e2a; }
|
|
.dr-filter-label { font-size: 11px; color: #555; padding: 0 2px; white-space: nowrap; }
|
|
.dr-filter-sep { width: 1px; height: 16px; background: #2a2a3a; margin: 0 4px; flex-shrink: 0; }
|
|
.dr-chip { font-size: 11px; padding: 3px 11px; border-radius: 20px; border: 1px solid #2a2a3a; background: rgba(255,255,255,.04); color: #888; cursor: pointer; transition: all .15s; font-family: system-ui, sans-serif; }
|
|
.dr-chip:hover { border-color: #3a3a5a; color: #aaa; }
|
|
.dr-search { font-size: 11px; padding: 3px 10px; border-radius: 20px; border: 1px solid #2a2a3a; background: rgba(255,255,255,.04); color: #c0c0e0; outline: none; width: 160px; font-family: Consolas, monospace; }
|
|
.dr-search::placeholder { color: #444; }
|
|
.dr-search:focus { border-color: rgba(96,165,250,.4); background: rgba(96,165,250,.05); }
|
|
.dr-chip.active { border-color: rgba(96,165,250,.4); background: rgba(96,165,250,.12); color: #93c5fd; }
|
|
.dr-card.dr-hidden { display: none; }
|
|
|
|
/* Variant alerts */
|
|
.dr-variant-section { margin: 16px 0 0; }
|
|
.dr-variant-heading { padding: 8px 16px; font-size: 12px; font-weight: 600; color: #fbbf24; background: rgba(251,191,36,.06); border-top: 1px solid rgba(251,191,36,.2); border-bottom: 1px solid rgba(251,191,36,.12); }
|
|
.dr-card.variant-alert { border-color: rgba(251,191,36,.25); }
|
|
.dr-card.variant-alert .dr-card-head { background: rgba(251,191,36,.06); }
|
|
.dr-variant-label { font-size: 10px; font-weight: 500; color: #fbbf24; background: rgba(251,191,36,.12); border: 1px solid rgba(251,191,36,.25); padding: 1px 7px; border-radius: 10px; }
|
|
.dr-tag.variant { background: rgba(251,191,36,.12); color: #fbbf24; border: 1px solid rgba(251,191,36,.25); }
|
|
.dr-tag.bare { background: rgba(167,139,250,.12); color: #c4b5fd; border: 1px solid rgba(167,139,250,.25); }
|
|
.dr-row.variant .dr-path { color: #c0c0e0; }
|