Image rights / copyright detection system: SQLite store, HTTP app, search integrations (Naver, Google Custom Search, Google Cloud Vision web detection), image analysis (fingerprints, face/person detection, evidence enrichment, risk scoring), an admin/review layer, governance and retention policies, batch jobs, and a browser-based operator GUI. This baseline incorporates a full code-review remediation pass (46 fixes; 358 tests passing). Highlights: CRITICAL - Prevent evidence cascade-delete during the schema-constraint migration by disabling FK enforcement around the table rebuild. Security - Sandbox served media (neutralize stored XSS from uploaded/collected SVGs) via CSP + nosniff on the untrusted media routes. - Strip embedded EXIF/GPS from external image derivatives before they are sent to third-party APIs. - Return a clean 404 (not an uncaught StopIteration) for PATCH on an unknown provider. Correctness - LLM-summary failures no longer add +30 to the risk score. - Decode only explicit JS escapes so Korean image URLs are not mangled. - Consume search quota only after a successful request. - Naver/Google adapters map responses inside the failure boundary, so a malformed response degrades to evidence instead of crashing enrichment. - Domain-aware provider attribution; face-box IoU de-duplication; count searches (not result items); per-box crop isolation; clamp evidence confidence and Google CSE num; real submittedEpoch; and more. Robustness - Offline LLM connect fast-fails (short connect timeout) so seed/reload requests are not stalled; full read timeout preserved for generation. - Malformed numeric env vars fall back to defaults instead of crashing startup. Performance - Per-submission evidence reads (no full-table scan per rescore), audit-log LIMIT, lazy active-store lookup, hoisted timestamps. Tests - ~24 regression tests added pinning the above fixes. Runtime data (data/, outputs/, *.sqlite3, *.log), secrets (.env), and node_modules are gitignored.
2328 lines
37 KiB
CSS
2328 lines
37 KiB
CSS
:root {
|
|
--surface: #f4f1ea;
|
|
--surface-strong: #ffffff;
|
|
--surface-muted: #e8e3d8;
|
|
--ink: #172124;
|
|
--ink-soft: #4a5558;
|
|
--line: #cfc6b7;
|
|
--line-strong: #8b806f;
|
|
--accent: #2f6272;
|
|
--accent-strong: #234a56;
|
|
--green: #2f6d50;
|
|
--amber: #9a6a13;
|
|
--red: #a63f35;
|
|
--blue: #355f92;
|
|
--violet: #5d5478;
|
|
--radius: 8px;
|
|
--shadow: 0 14px 32px rgba(35, 42, 39, 0.12);
|
|
--audit-object-width: 24%;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html {
|
|
min-height: 100%;
|
|
background: var(--surface);
|
|
color: var(--ink);
|
|
font-family: "Segoe UI", "Malgun Gothic", "Apple SD Gothic Neo", sans-serif;
|
|
letter-spacing: 0;
|
|
}
|
|
|
|
body {
|
|
min-height: 100vh;
|
|
margin: 0;
|
|
background: var(--surface);
|
|
color: var(--ink);
|
|
}
|
|
|
|
button,
|
|
input,
|
|
select,
|
|
textarea {
|
|
font: inherit;
|
|
letter-spacing: 0;
|
|
}
|
|
|
|
button {
|
|
cursor: pointer;
|
|
}
|
|
|
|
button:disabled,
|
|
input:disabled,
|
|
select:disabled,
|
|
textarea:disabled {
|
|
cursor: not-allowed;
|
|
opacity: 0.62;
|
|
}
|
|
|
|
:focus-visible {
|
|
outline: 3px solid #d6a33a;
|
|
outline-offset: 2px;
|
|
}
|
|
|
|
.asset-preload {
|
|
display: none;
|
|
}
|
|
|
|
.sr-only {
|
|
position: absolute;
|
|
width: 1px;
|
|
height: 1px;
|
|
padding: 0;
|
|
margin: -1px;
|
|
overflow: hidden;
|
|
clip: rect(0, 0, 0, 0);
|
|
white-space: nowrap;
|
|
border: 0;
|
|
}
|
|
|
|
.app-shell {
|
|
display: grid;
|
|
grid-template-columns: 248px minmax(0, 1fr);
|
|
min-height: 100vh;
|
|
}
|
|
|
|
.nav-rail {
|
|
position: sticky;
|
|
top: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 8px;
|
|
height: 100vh;
|
|
padding: 18px 14px;
|
|
background: #26343a;
|
|
color: #f8f4ec;
|
|
border-right: 1px solid #1a2529;
|
|
}
|
|
|
|
.brand-block {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
min-height: 58px;
|
|
margin-bottom: 8px;
|
|
padding: 0 6px;
|
|
}
|
|
|
|
.brand-block strong,
|
|
.brand-block span {
|
|
display: block;
|
|
}
|
|
|
|
.brand-block strong {
|
|
font-size: 17px;
|
|
line-height: 1.2;
|
|
}
|
|
|
|
.brand-block div span {
|
|
margin-top: 3px;
|
|
color: #c6d0ce;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.brand-mark {
|
|
display: inline-grid;
|
|
place-items: center;
|
|
width: 42px;
|
|
height: 42px;
|
|
border-radius: 8px;
|
|
background: #d6a33a;
|
|
color: #1b2326;
|
|
font-weight: 800;
|
|
}
|
|
|
|
.nav-button {
|
|
display: grid;
|
|
grid-template-columns: 28px minmax(0, 1fr);
|
|
align-items: center;
|
|
gap: 10px;
|
|
width: 100%;
|
|
min-height: 42px;
|
|
padding: 9px 10px;
|
|
border: 1px solid transparent;
|
|
border-radius: 8px;
|
|
background: transparent;
|
|
color: #ecf0ed;
|
|
text-align: left;
|
|
}
|
|
|
|
.nav-button:hover,
|
|
.nav-button.active {
|
|
background: #f4f1ea;
|
|
color: #182225;
|
|
}
|
|
|
|
.nav-button span:first-child {
|
|
display: inline-grid;
|
|
place-items: center;
|
|
width: 28px;
|
|
height: 28px;
|
|
border: 1px solid currentColor;
|
|
border-radius: 7px;
|
|
font-size: 12px;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.nav-button span:last-child {
|
|
min-width: 0;
|
|
overflow-wrap: anywhere;
|
|
}
|
|
|
|
.nav-footer {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
margin-top: auto;
|
|
padding: 10px;
|
|
border: 1px solid rgba(255, 255, 255, 0.16);
|
|
border-radius: 8px;
|
|
color: #dfe6e3;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.status-dot {
|
|
width: 9px;
|
|
height: 9px;
|
|
border-radius: 50%;
|
|
background: var(--line-strong);
|
|
}
|
|
|
|
.status-dot.ok {
|
|
background: #74ba86;
|
|
}
|
|
|
|
.status-dot.warn {
|
|
background: #d8a842;
|
|
}
|
|
|
|
.status-dot.bad {
|
|
background: #dc6a5f;
|
|
}
|
|
|
|
.workspace {
|
|
min-width: 0;
|
|
}
|
|
|
|
.top-bar {
|
|
position: sticky;
|
|
top: 0;
|
|
z-index: 10;
|
|
display: grid;
|
|
grid-template-columns: minmax(240px, 0.9fr) minmax(280px, 1.1fr) auto auto;
|
|
align-items: center;
|
|
gap: 12px;
|
|
min-height: 68px;
|
|
padding: 12px 22px;
|
|
background: rgba(244, 241, 234, 0.96);
|
|
border-bottom: 1px solid var(--line);
|
|
}
|
|
|
|
.global-search {
|
|
order: 1;
|
|
}
|
|
|
|
.queue-health {
|
|
order: 3;
|
|
}
|
|
|
|
.provider-pulse {
|
|
order: 4;
|
|
}
|
|
|
|
.operator-chip {
|
|
order: 5;
|
|
}
|
|
|
|
.product-purpose {
|
|
order: 2;
|
|
display: grid;
|
|
gap: 2px;
|
|
min-height: 42px;
|
|
padding: 7px 12px;
|
|
border: 1px solid #dacdb8;
|
|
border-radius: 8px;
|
|
background: #fffaf0;
|
|
color: var(--ink);
|
|
}
|
|
|
|
.product-purpose strong {
|
|
font-size: 13px;
|
|
line-height: 1.2;
|
|
}
|
|
|
|
.product-purpose span {
|
|
color: var(--ink-soft);
|
|
font-size: 12px;
|
|
line-height: 1.35;
|
|
}
|
|
|
|
.global-search input,
|
|
.toolbar input,
|
|
.toolbar select,
|
|
.manual-query-form input,
|
|
.manual-query-form select,
|
|
.candidate-collection-form input,
|
|
.candidate-collection-form select,
|
|
.collection-promotion-form input,
|
|
.collection-promotion-form select,
|
|
.collection-promotion-form textarea,
|
|
.knowledge-form input,
|
|
.knowledge-form select,
|
|
.knowledge-form textarea,
|
|
.memo-field textarea {
|
|
width: 100%;
|
|
border: 1px solid var(--line);
|
|
border-radius: 8px;
|
|
background: var(--surface-strong);
|
|
color: var(--ink);
|
|
}
|
|
|
|
.global-search input {
|
|
min-height: 42px;
|
|
padding: 0 14px;
|
|
}
|
|
|
|
.queue-health,
|
|
.provider-pulse,
|
|
.coverage-tabs,
|
|
.operator-chip {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
min-height: 36px;
|
|
padding: 7px 10px;
|
|
border: 1px solid var(--line);
|
|
border-radius: 8px;
|
|
background: var(--surface-strong);
|
|
color: var(--ink-soft);
|
|
font-size: 13px;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.operator-chip {
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
gap: 0;
|
|
line-height: 1.2;
|
|
}
|
|
|
|
.operator-chip strong {
|
|
color: var(--ink);
|
|
}
|
|
|
|
.coverage-tabs {
|
|
order: 5;
|
|
grid-column: 1 / -1;
|
|
display: flex;
|
|
align-items: stretch;
|
|
gap: 0;
|
|
min-width: 0;
|
|
max-width: 100%;
|
|
padding: 0;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.coverage-tab {
|
|
display: grid;
|
|
grid-template-columns: minmax(0, 1fr) auto;
|
|
align-items: center;
|
|
gap: 8px;
|
|
min-width: 0;
|
|
min-height: 36px;
|
|
padding: 6px 10px;
|
|
border: 0;
|
|
border-right: 1px solid var(--line);
|
|
background: transparent;
|
|
color: var(--ink-soft);
|
|
font-size: 12px;
|
|
text-align: left;
|
|
}
|
|
|
|
.coverage-tab:last-child {
|
|
border-right: 0;
|
|
}
|
|
|
|
.coverage-tab span {
|
|
min-width: 0;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.coverage-tab strong {
|
|
color: var(--ink);
|
|
font-size: 13px;
|
|
}
|
|
|
|
.coverage-tab.active {
|
|
background: #26343a;
|
|
color: #ffffff;
|
|
}
|
|
|
|
.coverage-tab.active strong {
|
|
color: #ffffff;
|
|
}
|
|
|
|
.coverage-tab.ok strong {
|
|
color: var(--green);
|
|
}
|
|
|
|
.coverage-tab.warn strong {
|
|
color: var(--amber);
|
|
}
|
|
|
|
.coverage-tab.bad strong {
|
|
color: var(--red);
|
|
}
|
|
|
|
.coverage-tab.active.ok strong,
|
|
.coverage-tab.active.warn strong,
|
|
.coverage-tab.active.bad strong {
|
|
color: #ffffff;
|
|
}
|
|
|
|
.main-surface {
|
|
padding: 22px;
|
|
}
|
|
|
|
.view {
|
|
display: none;
|
|
}
|
|
|
|
.view.active {
|
|
display: block;
|
|
}
|
|
|
|
.section-header {
|
|
display: flex;
|
|
align-items: flex-end;
|
|
justify-content: space-between;
|
|
gap: 16px;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.section-header h1 {
|
|
margin: 0;
|
|
font-size: 24px;
|
|
line-height: 1.2;
|
|
}
|
|
|
|
.queue-intent {
|
|
max-width: 560px;
|
|
margin: 6px 0 0;
|
|
color: var(--ink-soft);
|
|
font-size: 13px;
|
|
line-height: 1.55;
|
|
}
|
|
|
|
.workbench-tabs {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 6px;
|
|
margin: 0 0 14px;
|
|
border-bottom: 1px solid var(--line);
|
|
}
|
|
|
|
.workbench-tabs button {
|
|
min-height: 38px;
|
|
padding: 0 14px;
|
|
border: 1px solid transparent;
|
|
border-bottom: 0;
|
|
border-radius: 8px 8px 0 0;
|
|
background: transparent;
|
|
color: var(--ink-soft);
|
|
font-weight: 800;
|
|
}
|
|
|
|
.workbench-tabs button.active {
|
|
border-color: var(--line);
|
|
background: var(--surface-strong);
|
|
color: var(--ink);
|
|
}
|
|
|
|
.workbench-panel {
|
|
display: none;
|
|
}
|
|
|
|
.workbench-panel.active {
|
|
display: block;
|
|
}
|
|
|
|
.knowledge-tabs {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 6px;
|
|
margin: 0 0 14px;
|
|
border-bottom: 1px solid var(--line);
|
|
}
|
|
|
|
.knowledge-tabs button {
|
|
min-height: 38px;
|
|
padding: 0 14px;
|
|
border: 1px solid transparent;
|
|
border-bottom: 0;
|
|
border-radius: 8px 8px 0 0;
|
|
background: transparent;
|
|
color: var(--ink-soft);
|
|
font-weight: 800;
|
|
}
|
|
|
|
.knowledge-tabs button.active {
|
|
border-color: var(--line);
|
|
background: var(--surface-strong);
|
|
color: var(--ink);
|
|
}
|
|
|
|
.knowledge-panel {
|
|
display: none;
|
|
}
|
|
|
|
.knowledge-panel.active {
|
|
display: block;
|
|
}
|
|
|
|
.queue-actions {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 8px;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.queue-folder-input {
|
|
display: grid;
|
|
gap: 4px;
|
|
min-width: 260px;
|
|
}
|
|
|
|
.queue-file-input {
|
|
display: grid;
|
|
gap: 4px;
|
|
min-width: 190px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.queue-folder-input span,
|
|
.queue-file-input span:first-child {
|
|
color: var(--ink-soft);
|
|
font-size: 12px;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.queue-folder-input input {
|
|
min-height: 38px;
|
|
padding: 0 10px;
|
|
border: 1px solid var(--line);
|
|
border-radius: 8px;
|
|
background: var(--surface-strong);
|
|
color: var(--ink);
|
|
}
|
|
|
|
.queue-file-input span:last-of-type {
|
|
display: flex;
|
|
align-items: center;
|
|
min-height: 38px;
|
|
max-width: 220px;
|
|
padding: 0 10px;
|
|
overflow: hidden;
|
|
border: 1px solid var(--line);
|
|
border-radius: 8px;
|
|
background: var(--surface-strong);
|
|
color: var(--ink-soft);
|
|
font-size: 13px;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.queue-file-input input {
|
|
position: absolute;
|
|
width: 1px;
|
|
height: 1px;
|
|
max-width: 1px;
|
|
max-height: 1px;
|
|
overflow: hidden;
|
|
opacity: 0;
|
|
pointer-events: none;
|
|
clip: rect(0 0 0 0);
|
|
clip-path: inset(50%);
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.import-status {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
min-height: 38px;
|
|
margin-bottom: 12px;
|
|
padding: 8px 10px;
|
|
border: 1px solid var(--line);
|
|
border-radius: 8px;
|
|
background: #fbfaf6;
|
|
color: var(--ink-soft);
|
|
font-size: 13px;
|
|
}
|
|
|
|
.operator-workflow {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
gap: 10px;
|
|
margin: 0 0 14px;
|
|
}
|
|
|
|
.operator-workflow article {
|
|
display: grid;
|
|
grid-template-columns: auto minmax(0, 1fr);
|
|
gap: 3px 10px;
|
|
min-height: 82px;
|
|
padding: 13px;
|
|
border: 1px solid #dacdb8;
|
|
border-radius: 12px;
|
|
background: #fffaf0;
|
|
}
|
|
|
|
.operator-workflow article span {
|
|
display: inline-grid;
|
|
place-items: center;
|
|
width: 26px;
|
|
height: 26px;
|
|
border-radius: 999px;
|
|
background: #26343a;
|
|
color: #fffaf0;
|
|
font-size: 12px;
|
|
font-weight: 900;
|
|
}
|
|
|
|
.operator-workflow strong {
|
|
align-self: center;
|
|
color: var(--ink);
|
|
font-size: 14px;
|
|
}
|
|
|
|
.operator-workflow p {
|
|
grid-column: 2;
|
|
margin: 0;
|
|
color: var(--ink-soft);
|
|
font-size: 12px;
|
|
line-height: 1.45;
|
|
}
|
|
|
|
.eyebrow {
|
|
margin: 0 0 5px;
|
|
color: var(--ink-soft);
|
|
font-size: 12px;
|
|
font-weight: 700;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.toolbar {
|
|
display: grid;
|
|
grid-template-columns: minmax(340px, 1.6fr) minmax(150px, 0.8fr) minmax(150px, 0.8fr) minmax(140px, 0.7fr) minmax(210px, 1fr);
|
|
gap: 10px;
|
|
align-items: end;
|
|
margin-bottom: 14px;
|
|
}
|
|
|
|
.toolbar label,
|
|
.manual-query-form label,
|
|
.candidate-collection-form label,
|
|
.collection-promotion-form label,
|
|
.knowledge-form label,
|
|
.memo-field {
|
|
display: grid;
|
|
gap: 5px;
|
|
min-width: 0;
|
|
}
|
|
|
|
.toolbar label span,
|
|
.manual-query-form label span,
|
|
.candidate-collection-form label span,
|
|
.collection-promotion-form label span,
|
|
.knowledge-form label span,
|
|
.memo-field span {
|
|
color: var(--ink-soft);
|
|
font-size: 12px;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.toolbar input,
|
|
.toolbar select,
|
|
.manual-query-form input,
|
|
.manual-query-form select,
|
|
.candidate-collection-form input,
|
|
.candidate-collection-form select,
|
|
.collection-promotion-form input,
|
|
.collection-promotion-form select,
|
|
.knowledge-form input,
|
|
.knowledge-form select {
|
|
min-height: 38px;
|
|
padding: 0 10px;
|
|
}
|
|
|
|
.memo-field textarea,
|
|
.collection-promotion-form textarea,
|
|
.knowledge-form textarea {
|
|
min-height: 114px;
|
|
padding: 10px;
|
|
resize: vertical;
|
|
}
|
|
|
|
.file-picker {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.file-picker-control {
|
|
display: grid;
|
|
grid-template-columns: auto minmax(0, 1fr);
|
|
gap: 8px;
|
|
align-items: center;
|
|
min-height: 38px;
|
|
padding: 5px;
|
|
border: 1px solid var(--line);
|
|
border-radius: 8px;
|
|
background: var(--surface-strong);
|
|
}
|
|
|
|
.file-picker-button {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
min-height: 28px;
|
|
padding: 0 10px;
|
|
border-radius: 6px;
|
|
background: #2f6f7e;
|
|
color: #ffffff;
|
|
font-size: 13px;
|
|
font-weight: 800;
|
|
}
|
|
|
|
.knowledge-form .file-picker-button {
|
|
color: #ffffff;
|
|
}
|
|
|
|
#knowledge-image-name {
|
|
min-width: 0;
|
|
overflow: hidden;
|
|
color: var(--ink-soft);
|
|
font-size: 13px;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.file-picker-input {
|
|
position: absolute;
|
|
width: 1px;
|
|
height: 1px;
|
|
max-width: 1px;
|
|
max-height: 1px;
|
|
overflow: hidden;
|
|
opacity: 0;
|
|
pointer-events: none;
|
|
clip: rect(0 0 0 0);
|
|
clip-path: inset(50%);
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.segmented {
|
|
display: grid;
|
|
grid-template-columns: repeat(6, minmax(0, 1fr));
|
|
min-height: 38px;
|
|
border: 1px solid var(--line);
|
|
border-radius: 8px;
|
|
background: var(--surface-strong);
|
|
overflow: hidden;
|
|
}
|
|
|
|
.segmented button {
|
|
min-width: 0;
|
|
border: 0;
|
|
border-right: 1px solid var(--line);
|
|
background: transparent;
|
|
color: var(--ink-soft);
|
|
font-size: 13px;
|
|
overflow-wrap: anywhere;
|
|
}
|
|
|
|
.segmented button:last-child {
|
|
border-right: 0;
|
|
}
|
|
|
|
.segmented button.active {
|
|
background: #26343a;
|
|
color: #ffffff;
|
|
}
|
|
|
|
.secondary-action,
|
|
.primary-action,
|
|
.danger-outline,
|
|
.decision-actions button,
|
|
.quick-actions button,
|
|
.icon-actions button,
|
|
.provider-actions button,
|
|
.row-action {
|
|
min-height: 36px;
|
|
border-radius: 8px;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.secondary-action,
|
|
.row-action,
|
|
.quick-actions button,
|
|
.icon-actions button,
|
|
.provider-actions button {
|
|
border: 1px solid var(--line);
|
|
background: var(--surface-strong);
|
|
color: var(--ink);
|
|
}
|
|
|
|
.row-action.active {
|
|
border-color: var(--accent);
|
|
background: #e7f0f2;
|
|
color: var(--accent-strong);
|
|
}
|
|
|
|
.row-action.danger {
|
|
border-color: #e0aaa4;
|
|
background: #fff0ed;
|
|
color: var(--red);
|
|
}
|
|
|
|
.primary-action {
|
|
border: 1px solid var(--accent-strong);
|
|
background: var(--accent);
|
|
color: #ffffff;
|
|
}
|
|
|
|
.danger-outline {
|
|
border: 1px solid var(--red);
|
|
background: #fff8f6;
|
|
color: var(--red);
|
|
}
|
|
|
|
.table-shell,
|
|
.pane,
|
|
.provider-row,
|
|
.correction-row,
|
|
.knowledge-row,
|
|
.audit-row {
|
|
border: 1px solid var(--line);
|
|
border-radius: 8px;
|
|
background: var(--surface-strong);
|
|
}
|
|
|
|
.table-shell {
|
|
overflow: visible;
|
|
box-shadow: var(--shadow);
|
|
}
|
|
|
|
table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
table-layout: fixed;
|
|
}
|
|
|
|
.queue-grid {
|
|
display: block;
|
|
min-width: 0;
|
|
}
|
|
|
|
.queue-grid thead {
|
|
display: block;
|
|
}
|
|
|
|
.queue-grid tbody {
|
|
display: grid;
|
|
}
|
|
|
|
.queue-grid thead tr,
|
|
.queue-row {
|
|
display: grid;
|
|
grid-template-columns: 28px 64px minmax(104px, 0.68fr) 72px minmax(126px, 0.58fr) minmax(360px, 1.5fr) 82px 76px 90px;
|
|
column-gap: 0;
|
|
align-items: center;
|
|
}
|
|
|
|
.queue-grid thead tr,
|
|
.queue-row {
|
|
width: 100%;
|
|
}
|
|
|
|
.queue-row {
|
|
min-height: 78px;
|
|
border-bottom: 1px solid var(--line);
|
|
}
|
|
|
|
.queue-row td,
|
|
.queue-grid th {
|
|
min-width: 0;
|
|
width: auto !important;
|
|
padding: 8px;
|
|
}
|
|
|
|
.queue-row td {
|
|
border-bottom: 0;
|
|
}
|
|
|
|
.queue-grid th {
|
|
position: static;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.queue-grid td {
|
|
width: auto !important;
|
|
}
|
|
|
|
.queue-row .reason-cell {
|
|
max-width: 100%;
|
|
}
|
|
|
|
.queue-submission-cell,
|
|
.queue-risk-cell,
|
|
.queue-time-cell {
|
|
min-width: 0;
|
|
}
|
|
|
|
.queue-submission-cell {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.queue-case-button {
|
|
display: inline-flex;
|
|
justify-content: flex-start;
|
|
justify-self: start;
|
|
width: auto;
|
|
max-width: 100%;
|
|
min-height: 32px;
|
|
padding: 4px 8px;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.score-stack.queue-risk-cell {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
flex-wrap: nowrap;
|
|
}
|
|
|
|
.queue-risk-cell span,
|
|
.queue-time-cell,
|
|
.queue-row td:nth-child(7),
|
|
.queue-row td:nth-child(8) {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.queue-row td:nth-child(5),
|
|
.queue-row td:nth-child(6) {
|
|
align-self: stretch;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.queue-row td:nth-child(5) {
|
|
padding-right: 6px;
|
|
}
|
|
|
|
.queue-row td:nth-child(6) {
|
|
padding-left: 6px;
|
|
}
|
|
|
|
.queue-row td:nth-child(6) {
|
|
align-content: center;
|
|
flex-wrap: nowrap;
|
|
gap: 3px;
|
|
}
|
|
|
|
.queue-provider-strip {
|
|
display: flex;
|
|
flex-wrap: nowrap;
|
|
gap: 3px;
|
|
min-width: 0;
|
|
max-width: 100%;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.queue-provider-chip {
|
|
flex: 0 0 auto;
|
|
min-width: 0;
|
|
margin: 0;
|
|
padding-inline: 5px;
|
|
font-size: 11px;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
th,
|
|
td {
|
|
padding: 10px;
|
|
border-bottom: 1px solid var(--line);
|
|
text-align: left;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
th {
|
|
position: sticky;
|
|
top: 0;
|
|
z-index: 1;
|
|
background: #efe9dd;
|
|
color: #3f4b4d;
|
|
font-size: 12px;
|
|
font-weight: 800;
|
|
}
|
|
|
|
td {
|
|
color: var(--ink);
|
|
font-size: 13px;
|
|
}
|
|
|
|
tbody tr {
|
|
transition: background 140ms ease, box-shadow 140ms ease;
|
|
}
|
|
|
|
tbody tr:hover {
|
|
background: #fbfaf6;
|
|
}
|
|
|
|
tbody tr.selected-row {
|
|
box-shadow: inset 4px 0 0 var(--accent);
|
|
}
|
|
|
|
.thumb {
|
|
width: 62px;
|
|
height: 48px;
|
|
border: 1px solid var(--line);
|
|
border-radius: 6px;
|
|
background: #f7f4ee;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.submission-id {
|
|
display: block;
|
|
font-weight: 800;
|
|
min-width: 0;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.muted {
|
|
color: var(--ink-soft);
|
|
}
|
|
|
|
.small {
|
|
font-size: 12px;
|
|
}
|
|
|
|
.score-stack {
|
|
display: grid;
|
|
gap: 4px;
|
|
}
|
|
|
|
.score-pill,
|
|
.risk-badge,
|
|
.source-chip,
|
|
.decision-badge,
|
|
.provider-chip,
|
|
.provenance-chip,
|
|
.evidence-status-chip,
|
|
.watchlist-chip {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 5px;
|
|
max-width: 100%;
|
|
min-height: 24px;
|
|
padding: 3px 8px;
|
|
border-radius: 999px;
|
|
border: 1px solid transparent;
|
|
font-size: 12px;
|
|
font-weight: 800;
|
|
line-height: 1.2;
|
|
overflow-wrap: anywhere;
|
|
}
|
|
|
|
.risk-high {
|
|
border-color: #e0aaa4;
|
|
background: #fff0ed;
|
|
color: var(--red);
|
|
}
|
|
|
|
.source-chip {
|
|
flex: 0 0 auto;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.evidence-status-chip,
|
|
.watchlist-chip.watchlist {
|
|
border-color: #e3c886;
|
|
background: #fff7df;
|
|
color: var(--amber);
|
|
}
|
|
|
|
.watchlist-chip.confirmed {
|
|
border-color: #afd6c1;
|
|
background: #ecf8f0;
|
|
color: var(--green);
|
|
}
|
|
|
|
.watchlist-chip.excluded {
|
|
border-color: #d6cbd2;
|
|
background: #f2eef1;
|
|
color: var(--ink-soft);
|
|
}
|
|
|
|
.risk-medium {
|
|
border-color: #e3c886;
|
|
background: #fff7df;
|
|
color: var(--amber);
|
|
}
|
|
|
|
.risk-low {
|
|
border-color: #afd6c1;
|
|
background: #ecf8f0;
|
|
color: var(--green);
|
|
}
|
|
|
|
.risk-failed {
|
|
border-color: #c9b4cb;
|
|
background: #f4eef5;
|
|
color: var(--violet);
|
|
}
|
|
|
|
.risk-pending {
|
|
border-color: #b8c6d7;
|
|
background: #eef5fc;
|
|
color: var(--blue);
|
|
}
|
|
|
|
.source-naver {
|
|
border-color: #b7d8be;
|
|
background: #eef9f0;
|
|
color: #245c38;
|
|
}
|
|
|
|
.source-google {
|
|
border-color: #b6c9e4;
|
|
background: #eef5ff;
|
|
color: #315f92;
|
|
}
|
|
|
|
.source-llm {
|
|
border-color: #c9bdd9;
|
|
background: #f5f0fb;
|
|
color: #5a4f77;
|
|
}
|
|
|
|
.source-internal {
|
|
border-color: #c7bca7;
|
|
background: #f7f2e8;
|
|
color: #695b45;
|
|
}
|
|
|
|
.source-failure {
|
|
border-color: #e0aaa4;
|
|
background: #fff2f0;
|
|
color: var(--red);
|
|
}
|
|
|
|
.provider-chip {
|
|
margin: 1px 2px 1px 0;
|
|
border-color: var(--line);
|
|
background: #f7f4ee;
|
|
color: var(--ink-soft);
|
|
}
|
|
|
|
.provider-chip.ok {
|
|
border-color: #afd6c1;
|
|
color: var(--green);
|
|
}
|
|
|
|
.provider-chip.failed {
|
|
border-color: #e0aaa4;
|
|
color: var(--red);
|
|
}
|
|
|
|
.provider-chip.disabled,
|
|
.provider-chip.skipped {
|
|
border-color: #d4c9b8;
|
|
color: #776a5a;
|
|
}
|
|
|
|
.reason-cell {
|
|
display: flex;
|
|
flex-wrap: nowrap;
|
|
gap: 4px;
|
|
min-width: 0;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.reason-cell span {
|
|
min-width: 0;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.case-layout {
|
|
display: grid;
|
|
grid-template-columns: minmax(270px, 0.9fr) minmax(360px, 1.3fr) minmax(288px, 0.82fr);
|
|
gap: 14px;
|
|
align-items: start;
|
|
}
|
|
|
|
.evidence-layout {
|
|
grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
|
|
padding-bottom: 260px;
|
|
}
|
|
|
|
.evidence-layout .decision-pane {
|
|
grid-column: auto;
|
|
}
|
|
|
|
.pane {
|
|
min-width: 0;
|
|
padding: 14px;
|
|
}
|
|
|
|
.pane-heading {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 12px;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.pane-heading.vertical {
|
|
display: block;
|
|
}
|
|
|
|
.pane-heading h2 {
|
|
margin: 0;
|
|
font-size: 16px;
|
|
line-height: 1.25;
|
|
}
|
|
|
|
.icon-actions {
|
|
display: flex;
|
|
gap: 6px;
|
|
}
|
|
|
|
.icon-actions button {
|
|
width: 40px;
|
|
padding: 0 6px;
|
|
}
|
|
|
|
.review-image-frame {
|
|
margin: 0;
|
|
}
|
|
|
|
.review-image-frame img {
|
|
display: block;
|
|
width: 100%;
|
|
aspect-ratio: 4 / 3;
|
|
border: 1px solid var(--line);
|
|
border-radius: 8px;
|
|
background: #f7f4ee;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.review-image-frame figcaption {
|
|
min-height: 18px;
|
|
margin-top: 6px;
|
|
color: var(--ink-soft);
|
|
font-size: 12px;
|
|
}
|
|
|
|
.fact-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 8px;
|
|
margin-top: 12px;
|
|
}
|
|
|
|
.fact-item {
|
|
min-height: 54px;
|
|
padding: 8px;
|
|
border: 1px solid var(--line);
|
|
border-radius: 8px;
|
|
background: #fbfaf6;
|
|
}
|
|
|
|
.fact-item span {
|
|
display: block;
|
|
color: var(--ink-soft);
|
|
font-size: 11px;
|
|
font-weight: 800;
|
|
}
|
|
|
|
.fact-item strong {
|
|
display: block;
|
|
margin-top: 5px;
|
|
overflow-wrap: anywhere;
|
|
}
|
|
|
|
.similar-strip {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
gap: 8px;
|
|
margin-top: 12px;
|
|
}
|
|
|
|
.similar-item {
|
|
display: grid;
|
|
gap: 5px;
|
|
min-width: 0;
|
|
}
|
|
|
|
.similar-item img {
|
|
width: 100%;
|
|
aspect-ratio: 4 / 3;
|
|
border: 1px solid var(--line);
|
|
border-radius: 8px;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.similar-item span {
|
|
color: var(--ink-soft);
|
|
font-size: 12px;
|
|
overflow-wrap: anywhere;
|
|
}
|
|
|
|
.reason-list {
|
|
display: grid;
|
|
gap: 12px;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.evidence-summary-board {
|
|
display: grid;
|
|
gap: 12px;
|
|
padding: 12px;
|
|
border: 1px solid var(--line);
|
|
border-radius: 8px;
|
|
background: #fbfaf6;
|
|
}
|
|
|
|
.summary-lead {
|
|
display: grid;
|
|
grid-template-columns: auto minmax(0, 1fr);
|
|
gap: 10px;
|
|
align-items: center;
|
|
}
|
|
|
|
.summary-lead strong {
|
|
display: block;
|
|
font-size: 17px;
|
|
}
|
|
|
|
.summary-lead span:not(.risk-badge) {
|
|
display: block;
|
|
margin-top: 3px;
|
|
color: var(--ink-soft);
|
|
font-size: 12px;
|
|
}
|
|
|
|
.summary-stat-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(6, minmax(0, 1fr));
|
|
gap: 7px;
|
|
}
|
|
|
|
.summary-stat {
|
|
min-width: 0;
|
|
padding: 8px;
|
|
border: 1px solid var(--line);
|
|
border-radius: 8px;
|
|
background: #ffffff;
|
|
}
|
|
|
|
.summary-stat.has-signal {
|
|
border-color: #d7b65d;
|
|
background: #fff8df;
|
|
}
|
|
|
|
.summary-stat span {
|
|
display: block;
|
|
color: var(--ink-soft);
|
|
font-size: 11px;
|
|
font-weight: 800;
|
|
}
|
|
|
|
.summary-stat strong {
|
|
display: block;
|
|
margin-top: 2px;
|
|
font-size: 18px;
|
|
}
|
|
|
|
.evidence-groups {
|
|
display: grid;
|
|
gap: 14px;
|
|
}
|
|
|
|
.evidence-next-actions {
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.evidence-next-action-panel {
|
|
display: grid;
|
|
gap: 10px;
|
|
padding: 12px;
|
|
border: 1px solid #e3c886;
|
|
border-radius: 8px;
|
|
background: #fffaf0;
|
|
}
|
|
|
|
.evidence-next-action-panel strong,
|
|
.evidence-next-action-panel span {
|
|
display: block;
|
|
}
|
|
|
|
.evidence-next-action-panel span {
|
|
margin-top: 3px;
|
|
color: var(--ink-soft);
|
|
font-size: 12px;
|
|
}
|
|
|
|
.evidence-followup-reasons {
|
|
display: grid;
|
|
gap: 4px;
|
|
margin: 0;
|
|
padding-left: 18px;
|
|
color: var(--ink-soft);
|
|
font-size: 13px;
|
|
}
|
|
|
|
.suggested-query-list {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 8px;
|
|
}
|
|
|
|
.evidence-group {
|
|
display: grid;
|
|
gap: 10px;
|
|
min-width: 0;
|
|
padding: 10px;
|
|
border: 1px solid var(--line);
|
|
border-radius: 8px;
|
|
background: #ffffff;
|
|
}
|
|
|
|
.evidence-group-strong {
|
|
border-color: #d9b85b;
|
|
background: #fffdf5;
|
|
}
|
|
|
|
.evidence-group-weak {
|
|
background: #fbfaf6;
|
|
}
|
|
|
|
.evidence-group-head {
|
|
display: flex;
|
|
align-items: start;
|
|
justify-content: space-between;
|
|
gap: 10px;
|
|
}
|
|
|
|
.evidence-group h3 {
|
|
margin: 0;
|
|
color: var(--ink);
|
|
font-size: 15px;
|
|
}
|
|
|
|
.evidence-group-head span {
|
|
display: block;
|
|
margin-top: 3px;
|
|
color: var(--ink-soft);
|
|
font-size: 12px;
|
|
}
|
|
|
|
.evidence-group-head strong {
|
|
flex: 0 0 auto;
|
|
min-width: 42px;
|
|
padding: 4px 8px;
|
|
border: 1px solid var(--line);
|
|
border-radius: 999px;
|
|
background: #fbfaf6;
|
|
font-size: 12px;
|
|
text-align: center;
|
|
}
|
|
|
|
.evidence-card-grid {
|
|
display: grid;
|
|
grid-template-columns: 1fr;
|
|
gap: 9px;
|
|
}
|
|
|
|
.evidence-details {
|
|
display: grid;
|
|
gap: 9px;
|
|
}
|
|
|
|
.evidence-details summary {
|
|
cursor: pointer;
|
|
width: max-content;
|
|
max-width: 100%;
|
|
padding: 7px 10px;
|
|
border: 1px solid var(--line);
|
|
border-radius: 8px;
|
|
background: #f7f2e8;
|
|
color: var(--ink);
|
|
font-size: 13px;
|
|
font-weight: 800;
|
|
}
|
|
|
|
.evidence-details[open] summary {
|
|
margin-bottom: 9px;
|
|
}
|
|
|
|
.evidence-card-grid-detail {
|
|
padding-top: 0;
|
|
}
|
|
|
|
.evidence-row,
|
|
.query-row,
|
|
.result-row,
|
|
.knowledge-row,
|
|
.correction-row,
|
|
.provider-row {
|
|
display: grid;
|
|
gap: 8px;
|
|
min-width: 0;
|
|
padding: 11px;
|
|
border: 1px solid var(--line);
|
|
border-radius: 8px;
|
|
background: #fbfaf6;
|
|
}
|
|
|
|
.evidence-row {
|
|
grid-template-columns: 118px minmax(0, 1fr) auto;
|
|
align-items: start;
|
|
background: #ffffff;
|
|
}
|
|
|
|
.evidence-row.no-preview {
|
|
grid-template-columns: minmax(0, 1fr) auto;
|
|
}
|
|
|
|
.evidence-main {
|
|
min-width: 0;
|
|
}
|
|
|
|
.evidence-preview {
|
|
display: block;
|
|
width: 118px;
|
|
min-width: 118px;
|
|
align-self: start;
|
|
}
|
|
|
|
.evidence-preview-empty {
|
|
display: none;
|
|
}
|
|
|
|
.evidence-preview img {
|
|
display: block;
|
|
width: 118px;
|
|
aspect-ratio: 1 / 1;
|
|
border: 1px solid var(--line);
|
|
border-radius: 8px;
|
|
background: #ffffff;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.evidence-link {
|
|
display: inline-block;
|
|
max-width: 100%;
|
|
margin-top: 7px;
|
|
color: #315f92;
|
|
font-size: 12px;
|
|
font-weight: 800;
|
|
overflow-wrap: anywhere;
|
|
}
|
|
|
|
.evidence-title,
|
|
.row-title {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 7px;
|
|
min-width: 0;
|
|
font-weight: 800;
|
|
}
|
|
|
|
.evidence-title span:last-child,
|
|
.row-title span:last-child {
|
|
min-width: 0;
|
|
overflow-wrap: anywhere;
|
|
}
|
|
|
|
.evidence-meta,
|
|
.row-meta {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 6px 10px;
|
|
margin-top: 5px;
|
|
color: var(--ink-soft);
|
|
font-size: 12px;
|
|
}
|
|
|
|
.evidence-actions {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 6px;
|
|
align-items: flex-end;
|
|
}
|
|
|
|
.knowledge-row.watchlist {
|
|
border-color: #e3c886;
|
|
background: #fffaf0;
|
|
}
|
|
|
|
.recommendation-box {
|
|
display: grid;
|
|
gap: 8px;
|
|
margin-bottom: 12px;
|
|
padding: 12px;
|
|
border: 1px solid var(--line);
|
|
border-radius: 8px;
|
|
background: #fbfaf6;
|
|
}
|
|
|
|
.recommendation-box strong {
|
|
font-size: 18px;
|
|
}
|
|
|
|
.floating-decision-panel {
|
|
position: fixed;
|
|
right: 24px;
|
|
bottom: 24px;
|
|
z-index: 20;
|
|
width: min(310px, calc(100vw - 48px));
|
|
max-height: calc(100vh - 132px);
|
|
overflow: auto;
|
|
box-shadow: 0 18px 48px rgba(23, 33, 36, 0.18);
|
|
}
|
|
|
|
.floating-decision-head {
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.floating-decision-panel .recommendation-box {
|
|
margin-bottom: 10px;
|
|
padding: 10px;
|
|
}
|
|
|
|
.floating-decision-panel .recommendation-box strong {
|
|
font-size: 15px;
|
|
}
|
|
|
|
.floating-decision-panel .memo-field textarea {
|
|
min-height: 76px;
|
|
}
|
|
|
|
.form-error {
|
|
min-height: 18px;
|
|
margin: 6px 0 8px;
|
|
color: var(--red);
|
|
font-size: 12px;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.decision-actions {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
gap: 8px;
|
|
}
|
|
|
|
.decision-secondary {
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.decision-secondary summary {
|
|
cursor: pointer;
|
|
color: var(--ink-soft);
|
|
font-size: 12px;
|
|
font-weight: 800;
|
|
}
|
|
|
|
.approve-action {
|
|
border: 1px solid #2f6d50;
|
|
background: #e9f8ee;
|
|
color: #245c38;
|
|
}
|
|
|
|
.hold-action {
|
|
border: 1px solid #c89b2c;
|
|
background: #fff7df;
|
|
color: #80570c;
|
|
}
|
|
|
|
.reject-action {
|
|
border: 1px solid #bf5a50;
|
|
background: #fff0ed;
|
|
color: var(--red);
|
|
}
|
|
|
|
.derived-preview {
|
|
display: grid;
|
|
gap: 6px;
|
|
margin-top: 12px;
|
|
padding: 10px;
|
|
border: 1px solid var(--line);
|
|
border-radius: 8px;
|
|
background: #f7f2e8;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.quick-actions {
|
|
display: grid;
|
|
grid-template-columns: 1fr;
|
|
gap: 8px;
|
|
margin-top: 12px;
|
|
}
|
|
|
|
.quick-actions button {
|
|
width: 100%;
|
|
}
|
|
|
|
.split-workspace {
|
|
display: grid;
|
|
grid-template-columns: minmax(280px, 0.85fr) minmax(420px, 1.15fr);
|
|
gap: 14px;
|
|
align-items: start;
|
|
}
|
|
|
|
.manual-query-form,
|
|
.candidate-collection-form,
|
|
.collection-promotion-form,
|
|
.knowledge-form {
|
|
display: grid;
|
|
gap: 10px;
|
|
margin-bottom: 14px;
|
|
}
|
|
|
|
.manual-query-form {
|
|
grid-template-columns: minmax(160px, 0.4fr) minmax(240px, 1fr) auto;
|
|
align-items: end;
|
|
}
|
|
|
|
.candidate-collection-form {
|
|
grid-template-columns: minmax(120px, 0.35fr) minmax(220px, 1fr) auto;
|
|
align-items: end;
|
|
}
|
|
|
|
.collection-promotion-form {
|
|
grid-template-columns: minmax(160px, 1fr) minmax(140px, 0.7fr);
|
|
align-items: end;
|
|
padding-top: 2px;
|
|
}
|
|
|
|
.collection-promotion-form .wide-field {
|
|
grid-column: 1 / -1;
|
|
}
|
|
|
|
.collection-promotion-form button {
|
|
justify-self: start;
|
|
}
|
|
|
|
.candidate-selection-actions {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 8px;
|
|
margin: 2px 0 10px;
|
|
}
|
|
|
|
.collection-candidates {
|
|
display: grid;
|
|
gap: 8px;
|
|
margin-bottom: 14px;
|
|
}
|
|
|
|
.candidate-card {
|
|
display: grid;
|
|
grid-template-columns: auto 74px minmax(0, 1fr) auto;
|
|
gap: 10px;
|
|
align-items: center;
|
|
padding: 9px;
|
|
border: 1px solid var(--line);
|
|
border-radius: 8px;
|
|
background: #fbfaf6;
|
|
}
|
|
|
|
.candidate-actions {
|
|
display: grid;
|
|
gap: 6px;
|
|
justify-items: stretch;
|
|
align-self: center;
|
|
}
|
|
|
|
.candidate-card.promoted {
|
|
background: #f1eee8;
|
|
}
|
|
|
|
.candidate-select {
|
|
display: grid;
|
|
place-items: center;
|
|
width: 26px;
|
|
min-height: 38px;
|
|
}
|
|
|
|
.candidate-select input {
|
|
width: 18px;
|
|
height: 18px;
|
|
accent-color: var(--accent);
|
|
}
|
|
|
|
.candidate-thumb {
|
|
width: 74px;
|
|
aspect-ratio: 1;
|
|
border: 1px solid var(--line);
|
|
border-radius: 8px;
|
|
background: #eee7dc;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.candidate-thumb.empty {
|
|
background: #eee7dc;
|
|
}
|
|
|
|
.candidate-main {
|
|
min-width: 0;
|
|
}
|
|
|
|
.compact-heading {
|
|
margin-top: 4px;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.section-divider {
|
|
height: 1px;
|
|
margin: 14px 0;
|
|
background: var(--line);
|
|
}
|
|
|
|
.inline-status {
|
|
min-height: 20px;
|
|
margin-bottom: 10px;
|
|
color: var(--ink-soft);
|
|
font-size: 13px;
|
|
}
|
|
|
|
.stack-list {
|
|
display: grid;
|
|
gap: 10px;
|
|
}
|
|
|
|
.knowledge-row {
|
|
grid-template-columns: 72px minmax(0, 1fr) minmax(128px, auto);
|
|
grid-template-areas: "thumb main actions";
|
|
align-items: start;
|
|
}
|
|
|
|
.knowledge-row.inactive,
|
|
.correction-row.inactive {
|
|
background: #f1eee8;
|
|
color: var(--ink-soft);
|
|
}
|
|
|
|
.knowledge-thumb {
|
|
grid-area: thumb;
|
|
width: 72px;
|
|
aspect-ratio: 1;
|
|
border: 1px solid var(--line);
|
|
border-radius: 8px;
|
|
background: #f5f0e7;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.knowledge-thumb.empty {
|
|
background: #eee7dc;
|
|
}
|
|
|
|
.knowledge-main {
|
|
grid-area: main;
|
|
display: grid;
|
|
gap: 7px;
|
|
min-width: 0;
|
|
}
|
|
|
|
.knowledge-title {
|
|
font-size: 15px;
|
|
}
|
|
|
|
.knowledge-detail-line {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px 12px;
|
|
min-width: 0;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.knowledge-chip-row {
|
|
display: flex;
|
|
flex: 0 0 auto;
|
|
flex-wrap: nowrap;
|
|
gap: 6px;
|
|
align-items: center;
|
|
}
|
|
|
|
.knowledge-chip-row .provenance-chip,
|
|
.knowledge-chip-row .watchlist-chip {
|
|
flex: 0 0 auto;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.knowledge-meta {
|
|
flex: 1 1 auto;
|
|
align-items: center;
|
|
gap: 5px 12px;
|
|
min-width: 0;
|
|
margin-top: 0;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.knowledge-meta span {
|
|
min-width: 0;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.knowledge-actions {
|
|
grid-area: actions;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 6px;
|
|
align-items: stretch;
|
|
min-width: 128px;
|
|
}
|
|
|
|
.chip-row {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 6px;
|
|
}
|
|
|
|
.provenance-chip.manual {
|
|
border-color: #a9c8d1;
|
|
background: #edf7f9;
|
|
color: var(--accent);
|
|
}
|
|
|
|
.provenance-chip.automatic {
|
|
border-color: #e3c886;
|
|
background: #fff7df;
|
|
color: var(--amber);
|
|
}
|
|
|
|
.correction-row {
|
|
grid-template-columns: minmax(0, 1fr) auto;
|
|
}
|
|
|
|
.provider-list {
|
|
display: grid;
|
|
gap: 12px;
|
|
}
|
|
|
|
.provider-row {
|
|
grid-template-columns: minmax(0, 1fr) minmax(240px, 0.45fr) auto;
|
|
align-items: center;
|
|
}
|
|
|
|
.provider-summary {
|
|
display: grid;
|
|
gap: 6px;
|
|
}
|
|
|
|
.quota-meter {
|
|
height: 9px;
|
|
border-radius: 999px;
|
|
background: #ded5c8;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.quota-meter span {
|
|
display: block;
|
|
height: 100%;
|
|
background: var(--accent);
|
|
}
|
|
|
|
.provider-actions {
|
|
display: flex;
|
|
gap: 8px;
|
|
}
|
|
|
|
.audit-table th:nth-child(1),
|
|
.audit-table td:nth-child(1) {
|
|
width: 168px;
|
|
}
|
|
|
|
.audit-table th:nth-child(2),
|
|
.audit-table td:nth-child(2) {
|
|
width: 120px;
|
|
}
|
|
|
|
.audit-table th:nth-child(3),
|
|
.audit-table td:nth-child(3) {
|
|
width: 172px;
|
|
}
|
|
|
|
.audit-table th:nth-child(4),
|
|
.audit-table td:nth-child(4) {
|
|
width: var(--audit-object-width);
|
|
}
|
|
|
|
.audit-table th:nth-child(5),
|
|
.audit-table td:nth-child(5) {
|
|
width: var(--audit-object-width);
|
|
}
|
|
|
|
.empty-state {
|
|
min-height: 94px;
|
|
padding: 18px;
|
|
border: 1px dashed var(--line-strong);
|
|
border-radius: 8px;
|
|
background: #fbfaf6;
|
|
color: var(--ink-soft);
|
|
}
|
|
|
|
@media (min-width: 1181px) {
|
|
.workbench-panel[data-workbench-panel="evidence"] {
|
|
padding-right: 334px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 1180px) {
|
|
.toolbar {
|
|
grid-template-columns: 1fr 1fr 1fr;
|
|
}
|
|
|
|
.filter-search {
|
|
grid-column: span 2;
|
|
}
|
|
|
|
.case-layout {
|
|
grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 1.1fr);
|
|
}
|
|
|
|
.decision-pane {
|
|
grid-column: 1 / -1;
|
|
}
|
|
|
|
.floating-decision-panel {
|
|
grid-column: auto;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 980px) {
|
|
.app-shell {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.nav-rail {
|
|
position: static;
|
|
display: grid;
|
|
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
height: auto;
|
|
padding: 12px;
|
|
}
|
|
|
|
.brand-block,
|
|
.nav-footer {
|
|
grid-column: 1 / -1;
|
|
}
|
|
|
|
.top-bar {
|
|
grid-template-columns: 1fr;
|
|
align-items: stretch;
|
|
}
|
|
|
|
.global-search,
|
|
.product-purpose,
|
|
.queue-health,
|
|
.provider-pulse,
|
|
.coverage-tabs,
|
|
.operator-chip {
|
|
min-width: 0;
|
|
width: 100%;
|
|
white-space: normal;
|
|
}
|
|
|
|
.coverage-tabs {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
overflow: hidden;
|
|
}
|
|
|
|
.case-layout,
|
|
.operator-workflow,
|
|
.split-workspace,
|
|
.provider-row {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.evidence-layout {
|
|
padding-bottom: 300px;
|
|
}
|
|
|
|
.summary-stat-grid {
|
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
}
|
|
}
|
|
|
|
@media (max-width: 680px) {
|
|
.main-surface {
|
|
padding: 14px;
|
|
}
|
|
|
|
.section-header {
|
|
display: grid;
|
|
align-items: start;
|
|
}
|
|
|
|
.toolbar,
|
|
.manual-query-form,
|
|
.candidate-collection-form,
|
|
.collection-promotion-form {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.segmented {
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
}
|
|
|
|
.nav-rail {
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
}
|
|
|
|
.decision-actions,
|
|
.fact-grid,
|
|
.similar-strip,
|
|
.summary-stat-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.floating-decision-panel {
|
|
right: 10px;
|
|
bottom: 10px;
|
|
width: calc(100vw - 20px);
|
|
max-height: 46vh;
|
|
padding: 10px;
|
|
}
|
|
|
|
.floating-decision-panel .decision-actions {
|
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
}
|
|
|
|
.floating-decision-panel .memo-field textarea {
|
|
min-height: 58px;
|
|
}
|
|
|
|
.evidence-row,
|
|
.evidence-row.no-preview,
|
|
.candidate-card {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.knowledge-detail-line,
|
|
.knowledge-meta {
|
|
flex-wrap: wrap;
|
|
white-space: normal;
|
|
}
|
|
|
|
.knowledge-row {
|
|
grid-template-columns: 56px minmax(0, 1fr);
|
|
grid-template-areas:
|
|
"thumb main"
|
|
"actions actions";
|
|
}
|
|
|
|
.knowledge-thumb {
|
|
width: 56px;
|
|
}
|
|
|
|
.knowledge-actions {
|
|
min-width: 0;
|
|
}
|
|
|
|
.evidence-preview,
|
|
.evidence-preview img,
|
|
.candidate-thumb {
|
|
width: 100%;
|
|
min-width: 0;
|
|
}
|
|
|
|
.evidence-actions {
|
|
flex-direction: row;
|
|
align-items: stretch;
|
|
}
|
|
|
|
th,
|
|
td {
|
|
padding: 8px;
|
|
}
|
|
|
|
.table-shell {
|
|
overflow: visible;
|
|
box-shadow: none;
|
|
}
|
|
|
|
.queue-table,
|
|
.queue-table tbody,
|
|
.queue-table tr,
|
|
.queue-table td {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
|
|
.queue-table thead {
|
|
display: none;
|
|
}
|
|
|
|
.queue-table tbody {
|
|
display: grid;
|
|
gap: 10px;
|
|
}
|
|
|
|
.queue-table tr {
|
|
display: grid;
|
|
grid-template-columns: 24px 72px minmax(0, 1fr);
|
|
gap: 8px 10px;
|
|
align-items: start;
|
|
padding: 10px;
|
|
border-bottom: 1px solid var(--line);
|
|
background: var(--surface-strong);
|
|
}
|
|
|
|
.queue-table td {
|
|
min-width: 0;
|
|
padding: 0;
|
|
border-bottom: 0;
|
|
}
|
|
|
|
.queue-table td:nth-child(1) {
|
|
grid-column: 1;
|
|
grid-row: 1;
|
|
align-self: center;
|
|
}
|
|
|
|
.queue-table td:nth-child(2) {
|
|
grid-column: 2;
|
|
grid-row: 1 / span 2;
|
|
}
|
|
|
|
.queue-table td:nth-child(3) {
|
|
grid-column: 3;
|
|
grid-row: 1;
|
|
}
|
|
|
|
.queue-table td:nth-child(4) {
|
|
grid-column: 3;
|
|
grid-row: 2;
|
|
}
|
|
|
|
.queue-table td:nth-child(5),
|
|
.queue-table td:nth-child(6),
|
|
.queue-table td:nth-child(7),
|
|
.queue-table td:nth-child(8),
|
|
.queue-table td:nth-child(9) {
|
|
grid-column: 1 / -1;
|
|
}
|
|
|
|
.queue-table td:nth-child(7),
|
|
.queue-table td:nth-child(8),
|
|
.queue-table td:nth-child(9) {
|
|
display: grid;
|
|
grid-template-columns: 58px minmax(0, 1fr);
|
|
gap: 6px;
|
|
color: var(--ink-soft);
|
|
font-size: 12px;
|
|
}
|
|
|
|
.queue-table td:nth-child(7)::before {
|
|
content: "지원자";
|
|
font-weight: 800;
|
|
}
|
|
|
|
.queue-table td:nth-child(8)::before {
|
|
content: "판정";
|
|
font-weight: 800;
|
|
}
|
|
|
|
.queue-table td:nth-child(9)::before {
|
|
content: "시간";
|
|
font-weight: 800;
|
|
}
|
|
|
|
.queue-table .thumb {
|
|
width: 72px;
|
|
height: 56px;
|
|
}
|
|
|
|
.queue-table .row-action {
|
|
max-width: 100%;
|
|
height: auto;
|
|
min-height: 34px;
|
|
overflow-wrap: anywhere;
|
|
white-space: normal;
|
|
}
|
|
|
|
.queue-table .submission-id {
|
|
overflow-wrap: anywhere;
|
|
}
|
|
|
|
.audit-table,
|
|
.audit-table tbody,
|
|
.audit-table tr,
|
|
.audit-table td {
|
|
display: block;
|
|
width: 100% !important;
|
|
}
|
|
|
|
.audit-table thead {
|
|
display: none;
|
|
}
|
|
|
|
.audit-table tbody {
|
|
display: grid;
|
|
gap: 10px;
|
|
}
|
|
|
|
.audit-table tr {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 6px 10px;
|
|
padding: 10px;
|
|
border: 1px solid var(--line);
|
|
border-radius: 8px;
|
|
background: var(--surface-strong);
|
|
}
|
|
|
|
.audit-table td {
|
|
min-width: 0;
|
|
padding: 0;
|
|
border-bottom: 0;
|
|
overflow-wrap: anywhere;
|
|
}
|
|
|
|
.audit-table td:nth-child(1),
|
|
.audit-table td:nth-child(2),
|
|
.audit-table td:nth-child(3) {
|
|
grid-column: 1 / -1;
|
|
}
|
|
|
|
.audit-table td:nth-child(4),
|
|
.audit-table td:nth-child(5) {
|
|
grid-column: auto;
|
|
}
|
|
}
|