diff --git a/modules/story-summary/story-summary.css b/modules/story-summary/story-summary.css index 3c3adb2..cf30ed2 100644 --- a/modules/story-summary/story-summary.css +++ b/modules/story-summary/story-summary.css @@ -981,9 +981,9 @@ h1 span { } .fullscreen .modal-box { - width: calc(100vw - 48px); + width: 95vw; + height: 90vh; max-width: none; - height: calc(100vh - 48px); max-height: none; } @@ -993,6 +993,12 @@ h1 span { overflow: hidden; } +#relation-chart-fullscreen { + width: 100%; + height: 100%; + min-height: 500px; +} + /* ═══════════════════════════════════════════════════════════════════════════ Editor ═══════════════════════════════════════════════════════════════════════════ */ @@ -2727,19 +2733,19 @@ h1 span { } .debug-log-viewer { - width: 100%; - height: 400px; - background: var(--bg3); - border: 1px solid var(--bdr); - border-radius: 6px; - padding: 12px; - font-family: 'SF Mono', Monaco, Consolas, 'Courier New', monospace; - font-size: 11px; + background: #1e1e1e; + color: #d4d4d4; + padding: 16px; + border-radius: 8px; + font-family: 'Consolas', 'Monaco', monospace; + font-size: 12px; line-height: 1.5; - color: var(--txt2); + max-height: 60vh; overflow-y: auto; + overflow-x: hidden; white-space: pre-wrap; - margin: 0; + word-break: break-word; + overflow-wrap: break-word; } .recall-empty { @@ -2897,4 +2903,4 @@ h1 span { #recall-log-content .metric-good { color: #22c55e; -} \ No newline at end of file +} diff --git a/modules/story-summary/vector/retrieval/metrics.js b/modules/story-summary/vector/retrieval/metrics.js index 185e3c6..5c6bbd4 100644 --- a/modules/story-summary/vector/retrieval/metrics.js +++ b/modules/story-summary/vector/retrieval/metrics.js @@ -137,9 +137,9 @@ export function formatMetricsLog(metrics) { const lines = []; lines.push(''); - lines.push('═══════════════════════════════════════════════════════════════════'); - lines.push(' Recall Metrics Report '); - lines.push('═══════════════════════════════════════════════════════════════════'); + lines.push('════════════════════════════════════════'); + lines.push(' Recall Metrics Report '); + lines.push('════════════════════════════════════════'); lines.push(''); // L0 Query Understanding @@ -291,7 +291,7 @@ export function formatMetricsLog(metrics) { } lines.push(''); - lines.push('═══════════════════════════════════════════════════════════════════'); + lines.push('════════════════════════════════════════'); lines.push(''); return lines.join('\n');