692 lines
62 KiB
CSS
692 lines
62 KiB
CSS
<style>
|
|
/* ── Theme tokens (warm cream light theme) ──────────────────────────────── */
|
|
:root {
|
|
--bg: #F5F3EE;
|
|
--surface: #FFFFFF;
|
|
--panel: #F3F4F6;
|
|
--border: #E5E7EB;
|
|
--text: #111827;
|
|
--subtext: #6B7280;
|
|
--accent: #2563EB;
|
|
--green: #16A34A;
|
|
--red: #DC2626;
|
|
--yellow: #D97706;
|
|
--mauve: #7C3AED;
|
|
--teal: #0D9488;
|
|
--on-accent:#FFFFFF;
|
|
--radius: 8px;
|
|
--font: 'Segoe UI', system-ui, sans-serif;
|
|
--shadow: 0 2px 8px rgba(0,0,0,0.08);
|
|
--sidebar-width: 220px;
|
|
}
|
|
* { box-sizing: border-box; margin: 0; padding: 0; }
|
|
body {
|
|
background: var(--bg); color: var(--text); font-family: var(--font);
|
|
font-size: 16px; height: 100vh; display: flex; flex-direction: column;
|
|
overflow: hidden;
|
|
}
|
|
|
|
/* ── App shell ───────────────────────────────────────────────────────────── */
|
|
#app-shell {
|
|
display: flex; flex: 1; min-height: 0; overflow: hidden;
|
|
}
|
|
|
|
/* ── Sidebar ─────────────────────────────────────────────────────────────── */
|
|
#sidebar {
|
|
width: var(--sidebar-width); flex-shrink: 0;
|
|
background: var(--surface); border-right: 1px solid var(--border);
|
|
display: flex; flex-direction: column; overflow-y: auto; overflow-x: hidden;
|
|
box-shadow: 2px 0 12px rgba(0,0,0,0.06);
|
|
}
|
|
.sidebar-brand {
|
|
padding: 18px 16px 14px;
|
|
border-bottom: 1px solid var(--border);
|
|
}
|
|
.sidebar-brand h1 {
|
|
font-size: 15px; font-weight: 800; color: var(--accent);
|
|
letter-spacing: -0.01em; line-height: 1.2;
|
|
}
|
|
.sidebar-brand p {
|
|
font-size: 11px; color: var(--subtext); margin-top: 3px;
|
|
}
|
|
.sidebar-nav { flex: 1; padding: 8px 0; }
|
|
.nav-group-label {
|
|
padding: 10px 16px 4px;
|
|
font-size: 10px; font-weight: 800; color: var(--subtext);
|
|
text-transform: uppercase; letter-spacing: 0.09em;
|
|
}
|
|
.nav-item {
|
|
display: flex; align-items: center; gap: 10px;
|
|
padding: 9px 16px; cursor: pointer; color: var(--subtext);
|
|
font-size: 13.5px; font-weight: 500;
|
|
transition: background 0.12s, color 0.12s;
|
|
border-right: 3px solid transparent;
|
|
user-select: none;
|
|
}
|
|
.nav-item:hover { background: var(--panel); color: var(--text); }
|
|
.nav-item.active {
|
|
background: rgba(37,99,235,0.08);
|
|
color: var(--accent); font-weight: 700;
|
|
border-right-color: var(--accent);
|
|
}
|
|
.nav-icon { font-size: 15px; width: 18px; text-align: center; flex-shrink: 0; }
|
|
.sidebar-footer {
|
|
padding: 12px 16px; border-top: 1px solid var(--border);
|
|
display: flex; gap: 8px; align-items: center;
|
|
}
|
|
.sidebar-footer button {
|
|
background: var(--panel); border: 1px solid var(--border); color: var(--subtext);
|
|
border-radius: var(--radius); padding: 6px 10px; font-size: 13px; cursor: pointer;
|
|
flex: 1; transition: background 0.12s, color 0.12s;
|
|
}
|
|
.sidebar-footer button:hover { background: var(--border); color: var(--text); }
|
|
|
|
/* ── Main content ────────────────────────────────────────────────────────── */
|
|
#main-content {
|
|
flex: 1; overflow-y: auto; overflow-x: hidden;
|
|
padding: 0 28px 80px; min-width: 0;
|
|
}
|
|
|
|
/* ── Page sections ───────────────────────────────────────────────────────── */
|
|
.page-section { scroll-margin-top: 12px; padding-top: 28px; }
|
|
.section-head {
|
|
display: flex; align-items: center; gap: 14px;
|
|
padding-bottom: 14px; border-bottom: 2px solid var(--border);
|
|
margin-bottom: 20px;
|
|
}
|
|
.section-icon { font-size: 26px; line-height: 1; }
|
|
.section-title h2 {
|
|
font-size: 20px; font-weight: 800; color: var(--text);
|
|
letter-spacing: -0.02em; margin: 0;
|
|
}
|
|
.section-title p {
|
|
font-size: 13px; color: var(--subtext); margin: 3px 0 0; line-height: 1.4;
|
|
}
|
|
|
|
/* ── Force all tab-content visible ──────────────────────────────────────── */
|
|
.tab-content {
|
|
display: flex !important; flex-direction: column; gap: 18px; padding: 0;
|
|
}
|
|
#tab-library { min-height: 0; }
|
|
|
|
/* ── Cards ──────────────────────────────────────────────────────────────── */
|
|
.card {
|
|
background: var(--surface); border: 1px solid var(--border);
|
|
border-radius: var(--radius); padding: 20px;
|
|
display: flex; flex-direction: column; gap: 14px;
|
|
box-shadow: var(--shadow); min-width: 0; max-width: 100%;
|
|
}
|
|
.card h2 {
|
|
font-size: 12px; font-weight: 700; color: var(--subtext);
|
|
text-transform: uppercase; letter-spacing: .09em;
|
|
}
|
|
|
|
/* ── Drop zone ──────────────────────────────────────────────────────────── */
|
|
#drop-zone {
|
|
border: 2px dashed var(--border); border-radius: var(--radius);
|
|
padding: 44px 20px; text-align: center; cursor: pointer; color: var(--subtext);
|
|
transition: border-color .2s, background .2s; font-size: 15px;
|
|
}
|
|
#drop-zone.drag-over { border-color: var(--accent); background: rgba(37,99,235,.05); color: var(--accent); }
|
|
#drop-zone span { display: block; font-size: 13px; margin-top: 9px; }
|
|
#drop-zone input[type=file] { display: none; }
|
|
|
|
/* ── Buttons ────────────────────────────────────────────────────────────── */
|
|
button {
|
|
cursor: pointer; border: none; border-radius: var(--radius);
|
|
padding: 9px 18px; font-size: 14px; font-family: inherit;
|
|
transition: opacity .15s, filter .15s;
|
|
}
|
|
button:disabled { opacity: .4; cursor: default; }
|
|
button:not(:disabled):hover { filter: brightness(0.95); }
|
|
.btn-primary { background: var(--accent); color: var(--on-accent); font-weight: 600; }
|
|
.btn-secondary { background: var(--panel); color: var(--text); border: 1px solid var(--border); }
|
|
.btn-green { background: var(--green); color: var(--on-accent); font-weight: 600; }
|
|
.btn-red { background: var(--red); color: var(--on-accent); font-weight: 600; }
|
|
.btn-teal { background: var(--teal); color: var(--on-accent); font-weight: 600; }
|
|
.btn-row { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
|
|
|
|
/* ── Waveform ───────────────────────────────────────────────────────────── */
|
|
#waveform-wrap { background: var(--panel); border-radius: var(--radius); overflow: hidden; }
|
|
#waveform { min-height: 90px; }
|
|
.time-row { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
|
|
.time-row label { color: var(--subtext); font-size: 13px; display: flex; align-items: center; gap: 7px; }
|
|
.time-row input[type=number] {
|
|
background: var(--panel); border: 1px solid var(--border); color: var(--text);
|
|
border-radius: 4px; padding: 6px 10px; width: 100px; font-size: 14px;
|
|
}
|
|
#trim-duration { font-size: 14px; padding: 6px 14px; border-radius: 4px; font-weight: 600; }
|
|
.dur-ok { background: rgba(22,163,74,.12); color: var(--green); }
|
|
.dur-warn { background: rgba(217,119,6,.12); color: var(--yellow); }
|
|
.dur-bad { background: rgba(220,38,38,.12); color: var(--red); }
|
|
|
|
/* ── URL row ────────────────────────────────────────────────────────────── */
|
|
.url-row { display: flex; gap: 8px; }
|
|
.url-row input[type=text] {
|
|
flex: 1; background: var(--panel); border: 1px solid var(--border);
|
|
color: var(--text); border-radius: var(--radius); padding: 9px 14px; font-size: 14px;
|
|
}
|
|
input::placeholder, textarea::placeholder { color: var(--border); }
|
|
#yt-progress { font-size: 13px; color: var(--subtext); min-height: 1.4em; font-family: monospace; }
|
|
|
|
/* ── Recording ──────────────────────────────────────────────────────────── */
|
|
#rec-indicator { display: none; align-items: center; gap: 8px; color: var(--red); font-size: 14px; }
|
|
#rec-indicator.active { display: flex; }
|
|
#rec-dot { width: 10px; height: 10px; background: var(--red); border-radius: 50%; animation: pulse 1s infinite; }
|
|
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .3; } }
|
|
|
|
/* ── Voice ID field ─────────────────────────────────────────────────────── */
|
|
.voice-id-row input[type=text] {
|
|
flex: 1; background: var(--panel); border: 1px solid var(--border); color: var(--text);
|
|
border-radius: var(--radius); padding: 10px 14px; font-size: 15px; font-family: monospace;
|
|
font-weight: 600; width: 100%;
|
|
}
|
|
.voice-id-row { display: flex; gap: 8px; }
|
|
input.id-valid { border-color: var(--green) !important; }
|
|
input.id-invalid { border-color: var(--red) !important; }
|
|
|
|
/* ── Helper details ─────────────────────────────────────────────────────── */
|
|
details.helper { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); }
|
|
details.helper summary { padding: 10px 14px; cursor: pointer; font-size: 13px; color: var(--subtext); user-select: none; list-style: none; }
|
|
details.helper summary::before { content: '\25B6 '; font-size: 11px; }
|
|
details.helper[open] summary::before { content: '\25BC '; }
|
|
details.helper .helper-body { padding: 12px 14px 14px; display: flex; gap: 10px; flex-wrap: wrap; align-items: flex-end; }
|
|
.field { display: flex; flex-direction: column; gap: 5px; }
|
|
.field label { font-size: 12px; color: var(--subtext); font-weight: 600; letter-spacing: .03em; text-transform: uppercase; }
|
|
.field select, .field input[type=text] {
|
|
background: var(--bg); border: 1px solid var(--border); color: var(--text);
|
|
border-radius: var(--radius); padding: 8px 12px; font-size: 14px;
|
|
}
|
|
|
|
/* ── Textareas ──────────────────────────────────────────────────────────── */
|
|
#transcript-area, #preview-text-area, #design-instruct, #design-sample-text {
|
|
width: 100%; background: var(--panel); border: 1px solid var(--border); color: var(--text);
|
|
border-radius: var(--radius); padding: 10px 14px; font-size: 14px; font-family: inherit; resize: vertical;
|
|
}
|
|
#transcript-area { min-height: 90px; }
|
|
#preview-text-area { min-height: 72px; }
|
|
#design-instruct { min-height: 110px; }
|
|
#design-sample-text { min-height: 56px; }
|
|
audio { width: 100%; }
|
|
|
|
/* ── Voice Design ───────────────────────────────────────────────────────── */
|
|
.design-hints { width: 100%; border-collapse: collapse; margin-top: 10px; font-size: 12px; color: var(--subtext); }
|
|
.design-hints th, .design-hints td { text-align: left; vertical-align: top; padding: 7px 9px; border-bottom: 1px solid var(--border); }
|
|
.design-hints th { color: var(--text); font-size: 11px; text-transform: uppercase; letter-spacing: .06em; }
|
|
.design-samples-details summary { cursor: pointer; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; color: var(--subtext); user-select: none; list-style: none; }
|
|
.design-samples-details summary::-webkit-details-marker { display: none; }
|
|
.design-samples-details summary::before { content: '\25B6'; color: var(--accent); font-size: 11px; }
|
|
.design-samples-details[open] summary::before { content: '\25BC'; }
|
|
.design-samples-details summary span:first-child { font-size: 12px; font-weight: 700; color: var(--subtext); text-transform: uppercase; letter-spacing: .09em; }
|
|
.design-samples-details .design-sample-header { margin-top: 12px; }
|
|
.preset-row { display: flex; gap: 8px; align-items: flex-end; flex-wrap: wrap; margin-top: 10px; }
|
|
.preset-row input, .preset-row select { background: var(--panel); border: 1px solid var(--border); color: var(--text); border-radius: var(--radius); padding: 8px 12px; font-size: 14px; }
|
|
.design-sample-grid { display: grid; grid-template-columns: minmax(150px,1fr) 52px 86px minmax(220px,1.4fr) minmax(220px,1.4fr) 176px; gap: 8px; align-items: center; }
|
|
.design-sample-header { padding: 8px 10px 10px; border-bottom: 1px solid var(--border); }
|
|
.design-sample-header div { white-space: nowrap; overflow: hidden; font-size: 11px; font-weight: 700; color: var(--subtext); text-transform: uppercase; letter-spacing: .07em; }
|
|
.qwen-sample { border: 1px solid var(--border); border-radius: 6px; background: var(--panel); padding: 8px 10px; transition: border-color .15s; }
|
|
.qwen-sample:hover { border-color: var(--accent); }
|
|
.qwen-sample strong { color: var(--accent); font-size: 13px; }
|
|
.qwen-sample .sample-sex, .qwen-sample .sample-language { color: var(--subtext); font-size: 12px; font-family: monospace; }
|
|
.qwen-sample .sample-desc, .qwen-sample .sample-text { color: var(--subtext); font-size: 12px; line-height: 1.35; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
|
|
.qwen-sample audio { display: none; grid-column: 1 / -1; margin-top: 6px; }
|
|
.qwen-sample-actions { display: flex; gap: 6px; flex-wrap: wrap; align-items: center; justify-content: flex-end; }
|
|
.lang-select { background: var(--panel); border: 1px solid var(--border); color: var(--text); border-radius: var(--radius); padding: 8px 12px; font-size: 14px; }
|
|
.d-naming-row { display: flex; gap: 10px; flex-wrap: wrap; align-items: flex-end; }
|
|
.d-naming-row .field { flex: 0 0 auto; }
|
|
.d-naming-row .field.flex1 { flex: 1 1 140px; }
|
|
#d-voice-id { font-family: monospace; font-weight: 600; font-size: 15px; color: var(--accent); width: 100%; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 8px 12px; }
|
|
#d-transcript { min-height: 70px; width: 100%; background: var(--panel); border: 1px solid var(--border); color: var(--text); border-radius: var(--radius); padding: 10px 14px; font-size: 14px; font-family: inherit; resize: vertical; }
|
|
#d-lang, #d-gender, #d-name { background: var(--bg); border: 1px solid var(--border); color: var(--text); border-radius: var(--radius); padding: 8px 12px; font-size: 14px; }
|
|
#design-save-result { display: flex; flex-direction: column; gap: 8px; }
|
|
#tts-voice-select { background: var(--panel); border: 1px solid var(--border); color: var(--text); border-radius: var(--radius); padding: 8px 12px; font-size: 14px; min-width: 200px; }
|
|
.preview-match-panel { margin-top: 12px; border: 1px solid var(--border); border-radius: 6px; background: rgba(37,99,235,.04); padding: 12px; display: grid; grid-template-columns: minmax(220px,.75fr) minmax(260px,1fr); gap: 12px; }
|
|
.preview-match-panel[hidden] { display: none; }
|
|
.preview-match-meta { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
|
|
.preview-match-title { font-weight: 700; color: var(--text); }
|
|
.preview-match-detail { color: var(--subtext); font-size: 12px; line-height: 1.45; }
|
|
.preview-match-warning { color: var(--yellow); font-size: 12px; line-height: 1.45; }
|
|
.preview-match-actions { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
|
|
.preview-match-panel audio { width: 100%; min-width: 0; }
|
|
.preview-match-transcript { background: var(--bg); border: 1px solid var(--border); border-radius: 6px; padding: 10px; color: var(--subtext); font-family: monospace; font-size: 12px; line-height: 1.4; max-height: 88px; overflow: auto; white-space: pre-wrap; }
|
|
@media (max-width: 900px) { .preview-match-panel { grid-template-columns: 1fr; } }
|
|
|
|
/* ── Settings ───────────────────────────────────────────────────────────── */
|
|
#settings-box { display: flex; flex-direction: column; gap: 16px; width: 100%; max-width: none; box-sizing: border-box; }
|
|
#settings-box h2 { font-size: 17px; font-weight: 700; }
|
|
.settings-section { border: 1px solid var(--border); border-radius: 6px; background: rgba(37,99,235,.03); padding: 14px; display: flex; flex-direction: column; gap: 12px; }
|
|
.settings-section-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
|
|
.settings-section-head h3 { font-size: 13px; color: var(--text); margin: 0; text-transform: uppercase; letter-spacing: .07em; }
|
|
.settings-section-head p { font-size: 13px; color: var(--subtext); line-height: 1.45; margin: 4px 0 0; max-width: 980px; }
|
|
.settings-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 12px; }
|
|
.settings-grid.three { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
|
|
.settings-actions { padding-top: 12px; margin-top: 2px; border-top: 1px solid var(--border); }
|
|
.setup-intro { background: rgba(37,99,235,.06); border: 1px solid var(--border); border-radius: var(--radius); padding: 12px 14px; color: var(--subtext); font-size: 13px; line-height: 1.55; }
|
|
.setup-intro strong { color: var(--text); }
|
|
.s-group { font-size: 11px; font-weight: 700; color: var(--subtext); text-transform: uppercase; letter-spacing: .09em; padding-top: 6px; border-top: 1px solid var(--border); }
|
|
.s-field { display: flex; flex-direction: column; gap: 5px; }
|
|
.s-field label { font-size: 13px; color: var(--subtext); font-weight: 500; }
|
|
.s-field input, .s-field select, .s-field textarea { background: var(--panel); border: 1px solid var(--border); color: var(--text); border-radius: var(--radius); padding: 9px 14px; font-size: 14px; }
|
|
.s-field textarea { min-height: 76px; resize: vertical; font-family: monospace; }
|
|
.s-hint { font-size: 12px; color: var(--subtext); }
|
|
.s-key-row { display: flex; gap: 6px; }
|
|
.s-key-row input { flex: 1; }
|
|
.s-eye-btn { background: var(--panel); border: 1px solid var(--border); color: var(--subtext); border-radius: var(--radius); padding: 0 13px; font-size: 15px; cursor: pointer; flex-shrink: 0; }
|
|
.s-eye-btn:hover { color: var(--text); }
|
|
.settings-title-row { display:flex; justify-content:space-between; align-items:flex-start; gap:16px; }
|
|
.settings-title-row h2 { margin:0; }
|
|
.settings-title-row .note { margin-top:4px; max-width:760px; }
|
|
.settings-status-pill { border:1px solid var(--border); background:rgba(22,163,74,.10); color:var(--green); border-radius:999px; padding:5px 10px; font-size:12px; font-weight:700; white-space:nowrap; }
|
|
.settings-checklist { display:flex; flex-wrap:wrap; align-items:center; gap:8px 14px; padding:10px 12px; }
|
|
.settings-checklist strong { margin-right:2px; }
|
|
.settings-checklist span { display:inline-flex; align-items:center; min-height:24px; padding:2px 9px; border:1px solid var(--border); border-radius:999px; background:var(--panel); color:var(--subtext); }
|
|
.settings-section { padding:12px; gap:10px; }
|
|
.settings-section-primary { background:rgba(37,99,235,.04); }
|
|
.settings-section-head h3 { font-size:12px; }
|
|
.settings-cluster-grid { display:grid; grid-template-columns: repeat(2, minmax(320px,1fr)); gap:12px; }
|
|
.settings-cluster { border:1px solid var(--border); border-radius:7px; background:var(--surface); padding:12px; display:flex; flex-direction:column; gap:10px; min-width:0; }
|
|
.settings-cluster-head { display:flex; justify-content:space-between; gap:10px; align-items:baseline; border-bottom:1px solid var(--border); padding-bottom:8px; }
|
|
.settings-cluster-head strong { color:var(--text); font-size:13px; text-transform:uppercase; letter-spacing:.07em; }
|
|
.settings-cluster-head span { color:var(--subtext); font-size:12px; text-align:right; }
|
|
.settings-grid.compact { grid-template-columns: repeat(2, minmax(220px,1fr)); gap:10px; }
|
|
.settings-behavior-grid { grid-template-columns: minmax(220px,.7fr) minmax(220px,.7fr) minmax(340px,1.1fr); align-items:start; }
|
|
.settings-mini-actions { margin-top:2px; gap:8px; }
|
|
.settings-mini-actions button { min-height:34px; padding:7px 12px; }
|
|
.settings-details { border:1px solid var(--border); border-radius:7px; background:rgba(37,99,235,.025); overflow:hidden; }
|
|
.settings-details summary { list-style:none; cursor:pointer; padding:12px 14px; display:flex; align-items:center; justify-content:space-between; gap:12px; color:var(--text); font-weight:800; text-transform:uppercase; letter-spacing:.07em; font-size:12px; }
|
|
.settings-details summary::-webkit-details-marker { display:none; }
|
|
.settings-details summary::before { content:'+'; width:20px; height:20px; border-radius:50%; display:inline-flex; align-items:center; justify-content:center; border:1px solid var(--border); color:var(--accent); margin-right:2px; flex:0 0 auto; }
|
|
.settings-details[open] summary::before { content:'-'; }
|
|
.settings-details summary span { display:flex; align-items:center; gap:8px; margin-right:auto; }
|
|
.settings-details summary small { color:var(--subtext); font-weight:500; text-transform:none; letter-spacing:0; font-size:12px; }
|
|
.settings-details > .settings-grid { padding:0 14px 14px; }
|
|
.settings-param-grid textarea { min-height:58px; }
|
|
.settings-actions { display:flex; gap:10px; align-items:center; padding:12px 0 0; }
|
|
.settings-actions button { min-width:128px; }
|
|
.settings-cluster-stt { grid-column: 1 / -1; }
|
|
.stt-settings-grid { grid-template-columns: minmax(320px, .65fr) minmax(240px, 1fr); }
|
|
.stt-settings-grid .stt-url-field { max-width: 720px; }
|
|
@media (max-width: 1100px) { .settings-cluster-grid { grid-template-columns:1fr; } .settings-behavior-grid { grid-template-columns:1fr; } }
|
|
@media (max-width: 900px) { .stt-settings-grid { grid-template-columns: 1fr; } .stt-settings-grid .stt-url-field { max-width: none; } }
|
|
|
|
/* ── Toast ──────────────────────────────────────────────────────────────── */
|
|
#toast { position: fixed; bottom: 24px; right: 24px; background: var(--surface); border: 1px solid var(--border); color: var(--text); padding: 14px 20px; border-radius: var(--radius); font-size: 14px; opacity: 0; transition: opacity .3s; pointer-events: none; z-index: 200; max-width: 380px; box-shadow: var(--shadow); }
|
|
#toast.show { opacity: 1; }
|
|
#toast.success { border-color: var(--green); color: var(--green); }
|
|
#toast.error { border-color: var(--red); color: var(--red); }
|
|
|
|
/* ── Status bar ─────────────────────────────────────────────────────────── */
|
|
#status-bar { background: var(--surface); border-top: 1px solid var(--border); padding: 5px 18px; font-size: 12px; color: var(--subtext); min-height: 24px; flex-shrink: 0; }
|
|
.info-box { background: var(--panel); border-radius: var(--radius); padding: 12px 16px; font-family: monospace; font-size: 13px; color: var(--accent); word-break: break-all; }
|
|
hr { border: none; border-top: 1px solid var(--border); }
|
|
.note { font-size: 13px; color: var(--subtext); line-height: 1.5; }
|
|
code { background: var(--panel); border-radius: 4px; padding: 1px 5px; font-family: monospace; font-size: 12px; }
|
|
|
|
/* ── Library ────────────────────────────────────────────────────────────── */
|
|
.lib-toolbar { display: flex; align-items: center; gap: 12px; min-height: 34px; margin-bottom: 6px; }
|
|
.lib-toolbar h2 { flex: 0 0 auto; }
|
|
.lib-toolbar .spacer { flex: 1 1 auto; }
|
|
.show-disabled-control { font-size: 13px; color: var(--subtext); display:flex; align-items:center; gap:7px; cursor:pointer; white-space:nowrap; }
|
|
.loading-panel { min-height: 170px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); border-radius: 6px; background: var(--panel); color: var(--subtext); padding: 18px; }
|
|
.loading-box { width: min(680px,100%); display: flex; flex-direction: column; gap: 13px; }
|
|
.loading-head { display: flex; align-items: center; gap: 10px; color: var(--text); font-weight: 700; font-size: 14px; }
|
|
.spinner { width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--border); border-top-color: var(--accent); animation: spin .8s linear infinite; flex: 0 0 auto; }
|
|
@keyframes spin { to { transform: rotate(360deg); } }
|
|
.loading-sub { font-size: 13px; line-height: 1.4; }
|
|
.skeleton-stack { display: flex; flex-direction: column; gap: 8px; }
|
|
.skeleton-row { height: 38px; border-radius: 6px; border: 1px solid var(--border); background: linear-gradient(90deg, var(--panel), rgba(37,99,235,.06), var(--panel)); background-size: 220% 100%; animation: skeletonSweep 1.15s ease-in-out infinite; }
|
|
@keyframes skeletonSweep { 0% { background-position: 120% 0; } 100% { background-position: -120% 0; } }
|
|
.library-benchmark-panel { margin-top: 12px; display: grid; grid-template-columns: minmax(260px,1fr) 210px auto; gap: 10px; align-items: end; }
|
|
.library-benchmark-panel .field { min-width: 0; }
|
|
#benchmark-sample-text { min-height: 62px; resize: vertical; background: var(--panel); border: 1px solid var(--border); color: var(--text); border-radius: var(--radius); padding: 10px 14px; font-size: 14px; font-family: inherit; width: 100%; }
|
|
.benchmark-actions { display: flex; gap: 8px; flex-wrap: wrap; }
|
|
.volume-actions { align-items: flex-end; }
|
|
.target-db-field { display: flex; flex-direction: column; gap: 4px; flex: 0 0 112px; color: var(--subtext); font-size: 11px; text-transform: uppercase; letter-spacing: .06em; }
|
|
.target-db-field input { width: 112px; background: var(--panel); border: 1px solid var(--border); color: var(--text); border-radius: var(--radius); padding: 8px 10px; font-size: 14px; }
|
|
.play-mode-field select { width: 100%; }
|
|
.benchmark-progress { margin-top: 10px; padding: 10px 12px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--panel); display: flex; flex-direction: column; gap: 7px; }
|
|
.benchmark-progress[hidden] { display: none; }
|
|
.benchmark-progress-head { display: flex; justify-content: space-between; gap: 12px; color: var(--subtext); font-size: 13px; }
|
|
#benchmark-progress-label { color: var(--text); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
|
|
.benchmark-progress-track { height: 8px; background: var(--bg); border-radius: 999px; overflow: hidden; border: 1px solid var(--border); }
|
|
#benchmark-progress-bar { height: 100%; width: 0%; background: var(--accent); transition: width .2s ease; }
|
|
.benchmark-live-stats { display: grid; grid-template-columns: repeat(6, minmax(72px,1fr)); gap: 6px; font-size: 12px; color: var(--subtext); }
|
|
.benchmark-live-stats span { border: 1px solid var(--border); border-radius: 5px; padding: 5px 7px; background: var(--bg); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
|
|
.benchmark-live-last { min-height: 1.3em; font-size: 12px; color: var(--subtext); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
|
|
.library-insights { display: grid; grid-template-columns: repeat(6, minmax(100px,1fr)); gap: 6px; margin-top: 5px; }
|
|
.insight { border: 1px solid var(--border); border-radius: 6px; background: var(--panel); min-height: 30px; padding: 5px 9px; display:flex; align-items:baseline; gap:8px; }
|
|
.insight[data-filter] { cursor: pointer; }
|
|
.insight[data-filter]:hover, .insight.active { border-color: var(--accent); background: rgba(37,99,235,.08); }
|
|
.insight strong { display: block; color: var(--text); font-size: 14px; line-height: 1.1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width:0; }
|
|
.insight span { display: block; color: var(--subtext); font-size: 10px; text-transform: uppercase; letter-spacing: .06em; margin-top: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width:0; line-height: 1.1; }
|
|
.library-filter-note { border: 1px solid var(--border); border-radius: 6px; background: rgba(37,99,235,.05); color: var(--subtext); padding: 8px 10px; font-size: 13px; display: flex; justify-content: space-between; align-items: center; gap: 10px; margin: 8px 0; }
|
|
.library-filter-note strong { color: var(--text); }
|
|
.library-filter-note button { flex: 0 0 auto; }
|
|
.library-control-panel { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; align-items: end; padding: 12px; border: 1px solid var(--border); border-radius: 7px; background: rgba(37,99,235,.035); }
|
|
.library-control-panel .field { min-width: 0; }
|
|
.library-control-panel input, .library-control-panel select { width: 100%; background: var(--panel); border: 1px solid var(--border); color: var(--text); border-radius: var(--radius); padding: 8px 10px; }
|
|
.library-list-title { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 8px 2px 8px; color: var(--subtext); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; font-weight: 800; }
|
|
.library-list-title strong { color: var(--text); font-size: 13px; }
|
|
.library-action-row { display: grid; grid-template-columns: auto 1fr auto auto; gap: 8px; align-items: center; margin: 8px 0 12px; }
|
|
.voice-action-group { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
|
|
.voice-action-group button { min-height: 34px; padding: 7px 12px; white-space: nowrap; }
|
|
.action-add { grid-column: 1; }
|
|
.action-refresh { grid-column: 2; justify-content: flex-start; }
|
|
.action-refresh button { flex: 0 0 auto; }
|
|
.action-db { display: none; }
|
|
.action-benchmark { display: none; }
|
|
.action-copy { display: none; }
|
|
.action-show-disabled { grid-column: 4; justify-self: end; align-self: center; min-height: 34px; padding: 0 4px; margin: 0; }
|
|
.benchmark-confirm { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin: 10px 0 0 132px; padding: 10px 12px; max-width: 760px; border: 1px solid rgba(217,119,6,.45); border-radius: 7px; background: rgba(217,119,6,.07); color: var(--text); box-shadow: var(--shadow); }
|
|
.benchmark-confirm[hidden] { display: none; }
|
|
.benchmark-confirm strong { color: var(--yellow); font-size: 13px; }
|
|
.benchmark-confirm span { color: var(--subtext); font-size: 13px; line-height: 1.35; flex: 1 1 260px; }
|
|
.benchmark-confirm button { white-space: nowrap; }
|
|
.benchmark-confirm .benchmark-confirm-start { background: var(--accent); color: var(--on-accent); border-color: var(--accent); }
|
|
.disabled-info { background: rgba(37,99,235,.06); border: 1px solid var(--border); border-radius: var(--radius); padding: 11px 15px; font-size: 13px; color: var(--subtext); line-height: 1.6; }
|
|
.disabled-info strong { color: var(--text); }
|
|
|
|
/* Voice list rows - Card grid layout */
|
|
.vl-grid { display: grid; grid-template-columns: repeat(2, minmax(300px, 1fr)); gap: 14px; }
|
|
.vl-header { display: none; }
|
|
.vl-row { position: relative; padding: 14px; border: 1px solid var(--border); border-radius: 10px; background: var(--surface); transition: border-color .15s, background .15s, box-shadow .15s; display: flex; flex-direction: column; gap: 10px; }
|
|
.vl-row:hover { border-color: var(--accent); background: rgba(37,99,235,.02); box-shadow: 0 4px 12px rgba(37,99,235,.12); }
|
|
.vl-row.vr-disabled { opacity: .42; }
|
|
.vl-row.edit-open { border-color: var(--accent); box-shadow: 0 0 0 2px rgba(37,99,235,.15); }
|
|
.vr-main-row { display: flex; flex-direction: column; gap: 8px; width: 100%; }
|
|
.vr-photo { width: 100%; height: 160px; border-radius: 8px; overflow: hidden; background: var(--border); position: relative; }
|
|
.vr-photo img { width: 100%; height: 100%; object-fit: cover; }
|
|
.vr-photo .ph-icon { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 40px; color: var(--subtext); }
|
|
.vr-photo:hover::after { content: ''; }
|
|
.vr-identity { display: flex; gap: 10px; align-items: center; min-width: 0; }
|
|
.vr-flag { cursor: pointer; user-select: none; display: flex; flex-direction: column; align-items: center; gap: 1px; flex: 0 0 auto; }
|
|
.vr-flag .flag-emoji { font-size: 22px; line-height: 1; transition: transform .15s; }
|
|
.vr-flag .flag-code { font-size: 10px; font-family: monospace; font-weight: 700; color: var(--subtext); letter-spacing: .04em; }
|
|
.vr-flag:hover .flag-emoji { transform: scale(1.18); }
|
|
.flag-picker { position: absolute; top: 100%; left: 0; z-index: 50; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 8px; display: none; flex-wrap: wrap; gap: 4px; width: max-content; max-width: 320px; max-height: 260px; overflow-y: auto; box-shadow: var(--shadow); }
|
|
.flag-picker.open { display: flex; }
|
|
.flag-opt { display: flex; flex-direction: column; align-items: center; gap: 2px; cursor: pointer; padding: 5px 7px; border-radius: 6px; font-size: 20px; transition: background .1s; }
|
|
.flag-opt .fo-code { font-size: 10px; font-family: monospace; font-weight: 700; color: var(--subtext); }
|
|
.flag-opt:hover { background: var(--border); }
|
|
.flag-opt.active { background: rgba(37,99,235,.15); }
|
|
.vr-gender { text-align: center; cursor: pointer; user-select: none; line-height: 1; display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
|
|
.vr-gender span { width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(37,99,235,.08); border: 1px solid rgba(37,99,235,.22); font-size: 28px; font-weight: 800; transition: transform .15s, background .15s, border-color .15s; }
|
|
.vr-gender span:hover { transform: scale(1.12); background: rgba(37,99,235,.15); border-color: var(--accent); }
|
|
.g-f { color: #e91e8c; }
|
|
.g-m { color: #0ea5e9; }
|
|
.g-n { color: #8b5cf6; }
|
|
.vr-name { display: flex; align-items: center; gap: 4px; min-width: 0; flex: 1; }
|
|
.vr-name-text { font-weight: 700; color: var(--accent); font-family: monospace; font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; flex: 1; cursor: text; }
|
|
.vr-name-input { flex: 1; background: var(--bg); border: 1px solid var(--accent); color: var(--text); border-radius: 4px; padding: 4px 8px; font-size: 13px; font-family: monospace; min-width: 0; }
|
|
.icon-btn { background: none; border: none; padding: 3px 5px; font-size: 14px; color: var(--subtext); border-radius: 4px; cursor: pointer; flex-shrink: 0; }
|
|
.icon-btn:hover { background: var(--border); color: var(--text); }
|
|
.rename-confirm { display: none; gap: 3px; }
|
|
.rename-confirm.show { display: flex; }
|
|
.vr-type { display: none; }
|
|
.vr-length { display: none; }
|
|
.vr-db { display: none; }
|
|
.vr-bench { display: none; }
|
|
.vr-edit { display: flex; justify-content: flex-end; }
|
|
.edit-audio-btn { width: 38px; height: 34px; border-radius: 7px; padding: 0; background: rgba(37,99,235,.10); border: 1px solid var(--border); color: var(--accent); font-size: 22px; line-height: 1; display: flex; align-items: center; justify-content: center; }
|
|
.edit-audio-btn:hover { border-color: var(--accent); background: rgba(37,99,235,.18); filter: none; }
|
|
.benchmark-one-btn { width: 26px; height: 26px; border-radius: 6px; padding: 0; font-size: 12px; }
|
|
.vr-rating { display: flex; gap: 2px; font-size: 18px; justify-content: flex-start; align-items: center; min-height: 31px; }
|
|
.star { cursor: pointer; color: var(--border); transition: color .1s; }
|
|
.star.on { color: var(--yellow); }
|
|
.vr-rating:hover .star { color: var(--yellow); }
|
|
.vr-rating:hover .star ~ .star { color: var(--border); }
|
|
.vr-play { display: flex; align-items: center; justify-content: flex-start; }
|
|
.vr-play-group { display: flex; gap: 8px; align-items: center; justify-content: flex-start; }
|
|
.vr-play button { width: 40px; height: 40px; border-radius: 50%; background: var(--accent); color: var(--on-accent); font-size: 13px; display: flex; align-items: center; justify-content: center; padding: 0; }
|
|
.vr-play-synth button { background: var(--teal); }
|
|
.vr-toggle { display: flex; justify-content: center; }
|
|
.toggle { position: relative; display: inline-block; width: 42px; height: 24px; }
|
|
.toggle input { opacity: 0; width: 0; height: 0; }
|
|
.t-slider { position: absolute; cursor: pointer; inset: 0; background: var(--border); border-radius: 24px; transition: .2s; }
|
|
.t-slider::before { position: absolute; content: ''; height: 18px; width: 18px; left: 3px; bottom: 3px; background: var(--bg); border-radius: 50%; transition: .2s; }
|
|
.toggle input:checked + .t-slider { background: var(--green); }
|
|
.toggle input:checked + .t-slider::before { transform: translateX(18px); }
|
|
.vr-delete { display: flex; justify-content: flex-end; }
|
|
.delete-btn { width: 30px; height: 30px; border-radius: 6px; padding: 0; background: none; border: 1px solid transparent; font-size: 15px; color: var(--subtext); display: flex; align-items: center; justify-content: center; transition: background .15s, border-color .15s, color .15s; }
|
|
.delete-btn:hover { background: rgba(220,38,38,.12); border-color: var(--red); color: var(--red); filter: none; }
|
|
.delete-confirm { position: absolute; right: 38px; top: 16px; z-index: 20; display: none; align-items: center; gap: 8px; min-width: 270px; max-width: min(380px, calc(100vw - 80px)); padding: 8px 9px; border: 1px solid rgba(220,38,38,.45); border-radius: 7px; background: var(--surface); color: var(--text); box-shadow: var(--shadow); }
|
|
.delete-confirm strong { font-size: 12px; color: var(--red); white-space: nowrap; }
|
|
.delete-confirm span { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 12px; color: var(--subtext); }
|
|
.delete-confirm button { height: 28px; padding: 0 10px; border-radius: 6px; font-size: 12px; white-space: nowrap; }
|
|
.delete-confirm .delete-confirm-go { background: rgba(220,38,38,.12); border-color: rgba(220,38,38,.45); color: var(--red); }
|
|
.vl-row.delete-pending { border-color: rgba(220,38,38,.65); }
|
|
.vl-row.delete-pending .delete-confirm { display: flex; }
|
|
.vl-row.delete-pending .delete-btn { background: rgba(220,38,38,.12); border-color: var(--red); color: var(--red); }
|
|
.vr-detail-row { display: none; }
|
|
.vr-detail-active { display: flex; flex-direction: column; align-items: flex-end; gap: 3px; min-height: 31px; }
|
|
.vr-detail-active .vr-active-tools { justify-content: flex-end; width: 100%; }
|
|
.vr-detail-delete { display: flex; align-items: start; justify-content: flex-end; min-height: 31px; padding-top: 18px; }
|
|
.vr-active-tools { display: flex; gap: 10px; align-items: center; }
|
|
.vr-ref, .vr-note { display: flex; flex-direction: column; align-items: stretch; gap: 2px; }
|
|
.vr-ref .vr-inline, .vr-note .vr-inline { display: flex; gap: 6px; align-items: center; min-width: 0; }
|
|
.vr-ref input { width: 100%; min-width: 0; background: transparent; border: none; border-bottom: 1px solid transparent; color: var(--subtext); font-size: 13px; padding: 3px 5px; font-family: inherit; outline: none; }
|
|
.vr-ref input:focus { border-bottom-color: var(--accent); color: var(--text); }
|
|
.vr-ref input::placeholder { color: var(--border); font-style: italic; }
|
|
.ref-transcribe-btn { width: 28px; height: 28px; padding: 0; border-radius: 6px; background: none; border: 1px solid transparent; color: var(--subtext); flex-shrink: 0; font-size: 14px; }
|
|
.ref-transcribe-btn:hover { background: var(--border); color: var(--text); filter: none; }
|
|
.vr-note input { width: 100%; background: transparent; border: none; border-bottom: 1px solid var(--border); color: var(--text); font-size: 13px; padding: 3px 5px; font-family: inherit; outline: none; }
|
|
.vr-note input:focus { border-bottom-color: var(--accent); }
|
|
.vr-note input::placeholder { color: var(--border); }
|
|
.vr-row-subtle { color: var(--subtext); font-size: 11px; font-family: monospace; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
|
|
.vr-optimizer { grid-column: auto; display: none; padding: 12px; border-top: 1px solid var(--border); margin: 6px 0 0; background: rgba(37,99,235,.04); border-radius: 6px; width: 100%; box-sizing: border-box; }
|
|
.vl-row.edit-open .vr-optimizer { display: block; }
|
|
.optimizer-grid { display: grid; grid-template-columns: minmax(280px,1.2fr) minmax(280px,1fr); gap: 12px; align-items: start; }
|
|
.opt-group { border: 1px solid var(--border); border-radius: 6px; background: var(--surface); padding: 10px; min-width: 0; }
|
|
.opt-group-title { font-size: 11px; font-weight: 800; color: var(--accent); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; }
|
|
.opt-group-note { font-size: 12px; color: var(--subtext); line-height: 1.4; margin-top: 7px; }
|
|
.opt-compare-panel { grid-column: 1 / -1; }
|
|
.opt-compare-grid { display: grid; grid-template-columns: repeat(2, minmax(240px,1fr)); gap: 10px; }
|
|
.opt-compare-card { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
|
|
.opt-compare-card strong { font-size: 12px; color: var(--text); }
|
|
.opt-compare-card audio { width: 100%; }
|
|
.opt-style-panel { grid-column: 1 / -1; display: grid; grid-template-columns: minmax(280px,1fr) minmax(260px,.8fr); gap: 10px; }
|
|
.opt-style-preview-box { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
|
|
.opt-style-audio { width: 100%; display: none; }
|
|
.backend-help { border: 1px solid var(--border); border-radius: 6px; background: rgba(37,99,235,.05); padding: 10px 12px; color: var(--subtext); font-size: 13px; line-height: 1.45; display: grid; gap: 7px; min-width: min(100%, 620px); }
|
|
.backend-help strong { color: var(--text); }
|
|
.backend-help-tags { display: flex; gap: 6px; flex-wrap: wrap; }
|
|
.backend-tag { border: 1px solid var(--border); border-radius: 4px; padding: 2px 6px; background: var(--panel); color: var(--subtext); font-size: 12px; }
|
|
.backend-tag.good { color: var(--green); border-color: rgba(22,163,74,.35); }
|
|
.backend-tag.warn { color: var(--yellow); border-color: rgba(217,119,6,.35); }
|
|
.opt-wave { cursor: crosshair; touch-action: none; width: 100%; height: 86px; background: var(--bg); border: 1px solid var(--border); border-radius: 6px; display: block; }
|
|
.opt-controls { display: flex; flex-wrap: wrap; gap: 8px; align-items: end; margin-top: 8px; }
|
|
.crop-duration-hint { align-self: center; color: var(--subtext); font-size: 12px; padding: 7px 9px; border: 1px solid var(--border); border-radius: 6px; background: var(--panel); }
|
|
.crop-duration-hint.ok { color: var(--green); border-color: rgba(22,163,74,.35); }
|
|
.crop-duration-hint.warn { color: var(--yellow); border-color: rgba(217,119,6,.35); }
|
|
.optimizer-workflow { grid-column: 1 / -1; }
|
|
.opt-maintenance { grid-column: 1 / -1; }
|
|
.opt-field { display: flex; flex-direction: column; gap: 4px; }
|
|
.opt-field label { font-size: 10px; color: var(--subtext); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
|
|
.opt-field input { width: 74px; background: var(--bg); border: 1px solid var(--border); color: var(--text); border-radius: 5px; padding: 6px 8px; font-size: 12px; font-family: monospace; }
|
|
.opt-field select { background: var(--bg); border: 1px solid var(--border); color: var(--text); border-radius: 5px; padding: 6px 8px; font-size: 12px; font-family: monospace; }
|
|
.opt-field.wide { flex: 1 1 220px; }
|
|
.opt-field.wide input, .opt-field.wide select { width: 100%; min-width: 180px; }
|
|
.opt-transcript { width: 100%; min-height: 86px; background: var(--bg); border: 1px solid var(--border); color: var(--text); border-radius: 6px; padding: 8px 10px; font-size: 13px; resize: vertical; }
|
|
.opt-status { font-size: 12px; color: var(--subtext); min-height: 16px; margin-top: 6px; }
|
|
.opt-restart-note { font-size: 12px; color: var(--yellow); align-self: center; }
|
|
.opt-restart-note[hidden] { display: none; }
|
|
.opt-restart-needed .opt-restart-tts { border-color: var(--yellow); color: var(--yellow); }
|
|
|
|
/* ── Audio bar ──────────────────────────────────────────────────────────── */
|
|
#lib-audio-bar { background: var(--panel); border: 1px solid var(--accent); border-radius: var(--radius); padding: 10px 14px; }
|
|
#lib-audio-bar audio { width: 100%; }
|
|
#lib-audio-bar .lib-audio-label { font-size: 13px; color: var(--accent); font-family: monospace; margin-bottom: 5px; font-weight: 700; }
|
|
|
|
/* ── Library add panel ──────────────────────────────────────────────────── */
|
|
.lib-add-panel { display: none; border: 1px solid rgba(37,99,235,.3); border-radius: 8px; background: rgba(37,99,235,.04); padding: 16px; margin: 6px 0 12px; }
|
|
.lib-add-panel.open { display: block; }
|
|
.lib-add-stack { display: flex; flex-direction: column; gap: 16px; }
|
|
.lib-add-section { border: 1px solid rgba(37,99,235,.2); border-radius: 8px; background: var(--surface); padding: 16px; }
|
|
.lib-add-section > h2 { color: var(--accent); margin-bottom: 14px !important; letter-spacing: .08em; }
|
|
.lib-add-input-grid { display: grid; grid-template-columns: minmax(300px,.9fr) minmax(420px,1.1fr); gap: 12px; align-items: stretch; }
|
|
.lib-add-import-box { border: 1px solid rgba(37,99,235,.2); border-radius: 8px; background: var(--panel); padding: 14px; display: flex; flex-direction: column; gap: 14px; }
|
|
.lib-add-record-box { border: 1px solid rgba(37,99,235,.2); border-radius: 8px; background: var(--panel); padding: 14px; display: flex; flex-direction: column; gap: 10px; }
|
|
.lib-add-drop { border: 2px dashed rgba(37,99,235,.4); border-radius: 8px; min-height: 150px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; cursor: pointer; color: var(--subtext); text-align: center; padding: 16px; transition: border-color .15s, background .15s, color .15s; background: rgba(37,99,235,.03); }
|
|
.lib-add-drop.drag-over { border-color: var(--accent); background: rgba(37,99,235,.08); color: var(--accent); }
|
|
.lib-add-drop strong { color: var(--text); font-size: 16px; }
|
|
.lib-add-drop span { font-size: 12px; color: var(--subtext); }
|
|
.lib-add-source-box { display: flex; flex-direction: column; gap: 10px; }
|
|
.lib-add-source-box input[type=text] { width: 100%; background: var(--surface); border: 1px solid rgba(37,99,235,.22); color: var(--text); border-radius: var(--radius); padding: 9px 12px; font-size: 14px; }
|
|
.lib-add-source-preview { display: none; align-items: center; gap: 10px; border: 1px solid rgba(37,99,235,.25); border-radius: 8px; background: rgba(37,99,235,.06); padding: 8px 10px; min-width: 0; }
|
|
.lib-add-source-preview.open { display: flex; }
|
|
.lib-add-source-preview img { width: 44px; height: 44px; border-radius: 6px; object-fit: cover; border: 1px solid var(--border); background: var(--bg); }
|
|
.lib-add-source-preview strong { display: block; color: var(--text); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
|
|
.lib-add-source-preview span { display: block; color: var(--subtext); font-size: 12px; margin-top: 2px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
|
|
.record-head { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
|
|
.record-head .note { font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--accent); }
|
|
.record-head-actions { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
|
|
.record-head-actions button { padding: 6px 10px; font-size: 12px; }
|
|
.lib-add-recorder-tools { display: flex; flex-direction: column; gap: 10px; }
|
|
.lib-add-mic-row { display: grid; grid-template-columns: minmax(240px,1fr) minmax(260px,.9fr); gap: 10px; align-items: stretch; }
|
|
.sample-read-box, .mic-monitor-box { border: 1px solid rgba(37,99,235,.18); border-radius: 6px; background: var(--surface); padding: 12px; }
|
|
.mic-monitor-box { padding: 10px; display: flex; flex-direction: column; gap: 8px; }
|
|
.sample-head, .mic-monitor-head { display: flex; justify-content: space-between; align-items: center; gap: 8px; margin-bottom: 6px; }
|
|
.sample-head label, .mic-monitor-head span:first-child { font-size: 11px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: .06em; }
|
|
.sample-head select { background: var(--bg); border: 1px solid var(--border); color: var(--text); border-radius: 6px; padding: 6px 8px; font-size: 13px; min-width: 150px; }
|
|
.sample-sentence { width: 100%; min-height: 120px; font-size: 16px; line-height: 1.55; color: var(--text); background: var(--surface); border: 1px solid var(--border); border-left: 4px solid var(--accent); border-radius: 6px; padding: 10px 12px; resize: vertical; font-family: inherit; }
|
|
.sample-actions { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; margin-top: 8px; }
|
|
.sample-actions button { padding: 6px 10px; font-size: 12px; }
|
|
.recording-tips { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 8px; }
|
|
.recording-tip { font-size: 11px; color: var(--subtext); border: 1px solid rgba(37,99,235,.25); border-radius: 999px; padding: 3px 8px; background: rgba(37,99,235,.07); }
|
|
.meter-readout { font-family: monospace; color: var(--subtext); font-size: 12px; white-space: nowrap; }
|
|
.mic-meter { display: grid; grid-template-columns: repeat(18, 1fr); gap: 3px; height: 24px; align-items: end; margin-bottom: 8px; }
|
|
.mic-meter .bar { height: 7px; border-radius: 3px; background: var(--border); transition: height .08s linear, background .08s linear, opacity .08s linear; opacity: .55; }
|
|
.mic-meter .bar.on { opacity: 1; background: var(--green); }
|
|
.mic-meter .bar.hot { background: var(--yellow); }
|
|
.mic-meter .bar.clip { background: var(--red); }
|
|
.mic-buttons { display: grid; grid-template-columns: repeat(auto-fit, minmax(96px,1fr)); gap: 8px; align-content: start; min-width: 0; }
|
|
.mic-buttons button { padding-left: 10px; padding-right: 10px; min-height: 44px; }
|
|
.mic-timer { font-family: monospace; font-size: 13px; color: var(--subtext); }
|
|
.mic-gain-row { display: grid; grid-template-columns: auto minmax(120px,1fr) 42px; gap: 8px; align-items: center; }
|
|
.mic-gain-row label { font-size: 12px; color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
|
|
.mic-gain-row input[type=range] { width: 100%; accent-color: var(--accent); }
|
|
.mic-gain-value { font-family: monospace; color: var(--text); font-size: 12px; text-align: right; }
|
|
.mic-help-panel { display: none; border: 1px solid var(--border); border-radius: 6px; background: rgba(37,99,235,.06); padding: 10px; color: var(--subtext); font-size: 12px; line-height: 1.45; }
|
|
.mic-help-panel.open { display: block; }
|
|
.mic-help-panel strong { color: var(--text); }
|
|
.mic-help-panel ul { margin: 7px 0 0 18px; }
|
|
.mic-help-panel li { margin: 4px 0; }
|
|
.lib-add-audio-row { display: grid; grid-template-columns: minmax(240px,1fr) auto; gap: 10px; align-items: center; margin-top: 14px; }
|
|
.lib-add-panel audio { width: 100%; }
|
|
.lib-add-panel .opt-wave { cursor: crosshair; touch-action: none; }
|
|
.lib-add-panel textarea { width: 100%; min-height: 80px; background: var(--surface); border: 1px solid rgba(37,99,235,.22); color: var(--text); border-radius: 6px; padding: 8px 10px; font-size: 13px; resize: vertical; }
|
|
.lib-add-panel textarea.sample-sentence { min-height: 128px; font-size: 16px; line-height: 1.55; border-left: 3px solid var(--accent); padding: 10px 12px; }
|
|
.lib-add-name-grid { display: grid; grid-template-columns: 100px 100px minmax(240px,1fr); gap: 8px; align-items: end; }
|
|
.lib-add-name-grid .opt-field input, .lib-add-name-grid .opt-field select { width: 100%; }
|
|
#lib-add-status { border-radius: 6px; background: rgba(37,99,235,.07); padding: 8px 10px; color: var(--subtext); font-size: 12px; }
|
|
|
|
/* ── Design preset library ──────────────────────────────────────────────── */
|
|
.design-preset-library { display: flex; flex-direction: column; gap: 6px; }
|
|
.design-preset-row { display: grid; grid-template-columns: minmax(120px,.8fr) 70px 90px minmax(180px,1.5fr) minmax(180px,1.4fr) 220px; gap: 8px; align-items: center; border: 1px solid var(--border); border-radius: 6px; background: var(--panel); padding: 8px 10px; font-size: 13px; }
|
|
.design-preset-row .preset-desc, .design-preset-row .preset-transcript { color: var(--subtext); overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
|
|
.design-preset-row .preset-actions { display: flex; gap: 6px; justify-content: flex-end; }
|
|
|
|
/* ── Get voices ─────────────────────────────────────────────────────────── */
|
|
.getvoices-source-editor { display: grid; grid-template-columns: 1fr auto; gap: 10px; align-items: stretch; }
|
|
.getvoices-source-editor textarea { width: 100%; min-height: 96px; resize: vertical; background: var(--panel); border: 1px solid var(--border); color: var(--text); border-radius: var(--radius); padding: 10px 12px; font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 12px; }
|
|
.getvoices-source-buttons { display: flex; flex-direction: column; gap: 8px; min-width: 132px; }
|
|
.getvoices-toolbar { display: grid; grid-template-columns: minmax(160px,1fr) 170px 150px 130px 120px auto; gap: 8px; align-items: center; margin-top: 10px; }
|
|
.getvoices-toolbar input, .getvoices-toolbar select { width: 100%; background: var(--panel); border: 1px solid var(--border); color: var(--text); border-radius: var(--radius); padding: 9px 12px; }
|
|
.getvoices-summary { display: grid; grid-template-columns: repeat(4, minmax(130px,1fr)); gap: 8px; }
|
|
.getvoices-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 12px; }
|
|
.voice-source-card { border: 1px solid var(--border); border-radius: 7px; background: var(--surface); padding: 12px; display: flex; flex-direction: column; gap: 10px; min-width: 0; }
|
|
.voice-source-head { display: flex; gap: 12px; align-items: flex-start; min-width: 0; }
|
|
.voice-source-thumb { width: 72px; height: 72px; border-radius: 7px; object-fit: cover; background: var(--bg); border: 1px solid var(--border); flex: 0 0 auto; }
|
|
.voice-source-title { min-width: 0; flex: 1; }
|
|
.voice-source-title strong { display: block; color: var(--text); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
|
|
.voice-source-title span { display: block; color: var(--subtext); font-size: 12px; margin-top: 2px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
|
|
.voice-source-desc { color: var(--subtext); font-size: 13px; line-height: 1.4; min-height: 2.8em; }
|
|
.voice-source-card audio { width: 100%; min-height: 32px; }
|
|
.voice-source-actions { display: flex; gap: 7px; flex-wrap: wrap; align-items: center; }
|
|
.voice-source-actions a, .voice-source-actions button { font-size: 12px; padding: 7px 9px; min-height: 32px; }
|
|
.voice-source-pill { border: 1px solid var(--border); color: var(--subtext); border-radius: 999px; padding: 3px 7px; font-size: 12px; }
|
|
|
|
/* ── Integrations ───────────────────────────────────────────────────────── */
|
|
.integration-toolbar { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
|
|
.integration-grid { display: flex; flex-direction: column; gap: 12px; }
|
|
.integration-card { border: 1px solid var(--border); border-radius: 6px; background: var(--surface); padding: 13px; display: flex; flex-direction: column; gap: 10px; width: 100%; }
|
|
.integration-card h3 { font-size: 15px; color: var(--text); margin: 0; }
|
|
.integration-card p { font-size: 13px; color: var(--subtext); line-height: 1.5; margin: 0; }
|
|
.integration-card pre { background: var(--panel); border: 1px solid var(--border); border-radius: 6px; color: var(--text); padding: 10px 12px; font-size: 12px; line-height: 1.45; overflow: auto; min-height: 118px; max-height: 360px; white-space: pre-wrap; }
|
|
.integration-card code { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; background: none; padding: 0; border-radius: 0; }
|
|
|
|
/* ── Routing ────────────────────────────────────────────────────────────── */
|
|
.routing-toolbar { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
|
|
.routing-grid { display: grid; grid-template-columns: 42px minmax(104px,.7fr) minmax(92px,.55fr) 82px minmax(112px,.6fr) minmax(140px,1fr) minmax(120px,.65fr) minmax(120px,.65fr) 42px; gap: 8px; align-items: center; }
|
|
.routing-header { padding: 8px 10px 10px; border-bottom: 1px solid var(--border); }
|
|
.routing-header div { font-size: 11px; font-weight: 700; color: var(--subtext); text-transform: uppercase; letter-spacing: .07em; }
|
|
.routing-row { border: 1px solid var(--border); border-radius: 6px; background: var(--surface); padding: 8px 10px; }
|
|
.routing-row input, .routing-row select { width: 100%; min-width: 0; background: var(--bg); border: 1px solid var(--border); color: var(--text); border-radius: 6px; padding: 7px 8px; font-size: 13px; }
|
|
.route-sound-cell { display: grid; grid-template-columns: minmax(0,1fr) auto auto; gap: 5px; align-items: center; }
|
|
.route-sound-cell .route-sound-upload, .route-sound-cell .route-sound-pick { min-height: 32px; padding: 6px 8px; font-size: 12px; }
|
|
.routing-row .toggle { justify-self: center; }
|
|
.routing-delete { width: 34px; height: 32px; padding: 0; }
|
|
.routing-help { border: 1px solid var(--border); border-radius: 6px; background: rgba(37,99,235,.05); padding: 12px; color: var(--subtext); font-size: 13px; line-height: 1.55; }
|
|
.routing-url-warning { display: none; margin-top: 7px; color: var(--yellow); }
|
|
.routing-url-warning.show { display: block; }
|
|
.routing-test-row { margin-top: 12px; display: grid; grid-template-columns: minmax(120px,.35fr) minmax(110px,.3fr) minmax(220px,1fr) auto; gap: 8px; align-items: stretch; }
|
|
.routing-test-row input, .routing-test-row textarea { width: 100%; min-width: 0; background: var(--panel); border: 1px solid var(--border); color: var(--text); border-radius: 6px; padding: 8px 10px; font-size: 13px; font-family: inherit; }
|
|
.routing-test-row textarea { min-height: 38px; resize: vertical; }
|
|
.routing-test-result { margin-top: 8px; font-size: 13px; color: var(--subtext); line-height: 1.45; }
|
|
.routing-test-result.warn { color: var(--yellow); }
|
|
.routing-test-result.ok { color: var(--green); }
|
|
.routing-log-head { display:flex; justify-content:space-between; align-items:flex-start; gap:12px; flex-wrap:wrap; }
|
|
.routing-log-actions { display:flex; gap:8px; align-items:center; flex-wrap:wrap; }
|
|
.routing-log-filter { min-height:36px; border:1px solid var(--border); border-radius:6px; background:var(--panel); color:var(--text); padding:0 10px; font:inherit; min-width:170px; }
|
|
.routing-log-list { display:flex; flex-direction:column; gap:7px; max-height:340px; overflow:auto; padding-right:4px; }
|
|
.routing-log-empty { color:var(--subtext); font-size:13px; padding:10px; border:1px dashed var(--border); border-radius:6px; background:var(--panel); }
|
|
.routing-log-entry { display:grid; grid-template-columns: 78px 92px minmax(120px,.75fr) minmax(180px,1.1fr) minmax(150px,.8fr) minmax(220px,1.2fr); gap:8px; align-items:center; border:1px solid var(--border); border-radius:6px; background:var(--surface); padding:8px 10px; font-size:12px; min-width: 860px; }
|
|
.routing-log-entry .log-time { color:var(--subtext); font-family:monospace; }
|
|
.routing-log-entry .log-app, .routing-log-entry .log-voice { overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
|
|
.routing-log-entry .log-meta, .routing-log-entry .log-text { color:var(--subtext); overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
|
|
.routing-log-badge { justify-self:start; border:1px solid var(--border); border-radius:999px; padding:3px 8px; font-size:11px; font-weight:800; text-transform:uppercase; letter-spacing:.06em; color:var(--subtext); background:rgba(37,99,235,.06); }
|
|
.routing-log-entry.status-ok .routing-log-badge, .routing-log-entry.status-matched .routing-log-badge, .routing-log-entry.status-streaming .routing-log-badge { color:var(--green); }
|
|
.routing-log-entry.status-no_match .routing-log-badge { color:var(--yellow); }
|
|
.routing-log-entry.status-error .routing-log-badge { color:var(--red); }
|
|
.routing-log-scroll { overflow-x:auto; }
|
|
.routing-sound-browser-head { display:flex; align-items:flex-start; justify-content:space-between; gap:12px; flex-wrap:wrap; }
|
|
.routing-sound-browser-actions { display:flex; gap:8px; flex-wrap:wrap; }
|
|
.routing-sound-list { display:flex; flex-direction:column; gap:6px; max-height:320px; overflow:auto; padding-right:4px; }
|
|
.routing-sound-search { width:100%; background:var(--panel); border:1px solid var(--border); color:var(--text); border-radius:6px; padding:8px 10px; }
|
|
.routing-sound-item { display:grid; grid-template-columns:44px minmax(220px,1fr) 90px 96px; gap:8px; align-items:center; border:1px solid var(--border); background:var(--surface); border-radius:6px; padding:8px; }
|
|
.routing-sound-item .sound-path { overflow:hidden; white-space:nowrap; text-overflow:ellipsis; font-family:monospace; font-size:12px; }
|
|
.routing-sound-item .sound-meta { color:var(--subtext); font-size:12px; }
|
|
.routing-sound-item button { min-height:32px; padding:6px 9px; font-size:12px; }
|
|
.routing-sound-preview { width:100%; margin-top:8px; }
|
|
|
|
/* ── Section dividers between subsections ───────────────────────────────── */
|
|
.subsection-head {
|
|
display: flex; align-items: center; gap: 8px;
|
|
padding: 16px 0 8px; border-bottom: 1px solid var(--border); margin-bottom: 12px;
|
|
}
|
|
.subsection-head h3 {
|
|
font-size: 14px; font-weight: 700; color: var(--subtext);
|
|
text-transform: uppercase; letter-spacing: .06em; margin: 0;
|
|
}
|
|
|
|
/* ── Responsive ─────────────────────────────────────────────────────────── */
|
|
@media (max-width: 900px) {
|
|
.vl-grid { grid-template-columns: 1fr; }
|
|
.getvoices-source-editor, .getvoices-toolbar, .getvoices-summary { grid-template-columns: 1fr; }
|
|
.getvoices-source-buttons { flex-direction: row; min-width: 0; }
|
|
.design-sample-grid { grid-template-columns: 1fr; }
|
|
.qwen-sample-actions { justify-content: flex-start; }
|
|
.design-preset-row, .routing-grid { grid-template-columns: 1fr; }
|
|
}
|
|
@media (max-width: 760px) {
|
|
#sidebar { display: none; }
|
|
#main-content { padding: 0 12px 60px; }
|
|
.vl-grid { grid-template-columns: 1fr; }
|
|
}
|
|
@media (max-width: 1100px) {
|
|
.library-control-panel { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
|
|
.library-insights { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
|
|
.settings-cluster-grid { grid-template-columns: 1fr; }
|
|
.lib-add-input-grid, .lib-add-mic-row { grid-template-columns: 1fr; }
|
|
}
|