fix: fullscreen chart and metrics log layout
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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');
|
||||
|
||||
Reference in New Issue
Block a user