fix: qwen thinking toggle and recall log styles

This commit is contained in:
2026-02-08 18:12:55 +08:00
parent b4e181caea
commit 8fdce7b9a1
4 changed files with 147 additions and 324 deletions

View File

@@ -1455,23 +1455,25 @@ h1 span {
}
#recall-log-content {
flex: 1;
min-height: 0;
white-space: pre-wrap;
font-family: 'SF Mono', Monaco, Consolas, 'Courier New', monospace;
font-family: 'Consolas', 'Monaco', 'SF Mono', monospace;
font-size: 12px;
line-height: 1.6;
background: var(--bg3);
padding: 16px;
border-radius: 4px;
overflow-y: auto;
color: #e8e8e8;
white-space: pre-wrap !important;
overflow-x: hidden !important;
word-break: break-word;
overflow-wrap: break-word;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.recall-empty {
color: var(--txt3);
color: #999;
text-align: center;
padding: 40px;
font-style: italic;
font-size: .8125rem;
line-height: 1.8;
}
/* 移动端适配 */
@@ -1483,9 +1485,11 @@ h1 span {
border-radius: 0;
}
.debug-log-viewer,
#recall-log-content {
font-size: 11px;
padding: 12px;
line-height: 1.5;
}
}
@@ -2732,14 +2736,18 @@ h1 span {
margin-bottom: 4px;
}
/* ═══════════════════════════════════════════════════════════════════════════
Recall Log / Debug Log
═══════════════════════════════════════════════════════════════════════════ */
.debug-log-viewer {
background: #1e1e1e;
color: #d4d4d4;
background: #1a1a1a;
color: #e0e0e0;
padding: 16px;
border-radius: 8px;
font-family: 'Consolas', 'Monaco', monospace;
font-family: 'Consolas', 'Monaco', 'SF Mono', monospace;
font-size: 12px;
line-height: 1.5;
line-height: 1.6;
max-height: 60vh;
overflow-y: auto;
overflow-x: hidden;
@@ -2749,7 +2757,7 @@ h1 span {
}
.recall-empty {
color: var(--txt3);
color: #999;
text-align: center;
padding: 40px;
font-style: italic;
@@ -2884,15 +2892,6 @@ h1 span {
Metrics Log Styling
═══════════════════════════════════════════════════════════════════════════ */
#recall-log-content {
font-family: 'SF Mono', Monaco, Consolas, 'Courier New', monospace;
font-size: 11px;
line-height: 1.5;
white-space: pre;
overflow-x: auto;
tab-size: 4;
}
#recall-log-content .metric-warn {
color: #f59e0b;
}