fix(cli): 更新 CLI 流查看器的样式以确保在深色背景上文本可见性

This commit is contained in:
catlog22
2026-01-18 13:48:20 +08:00
parent 502d088c98
commit f47726d43b
2 changed files with 2 additions and 1 deletions

View File

@@ -403,6 +403,7 @@
padding: 2px 0;
border-radius: 2px;
transition: background-color 0.15s;
color: hsl(0 0% 85%); /* Default text color - ensure visibility on dark background */
}
.cli-stream-line:hover {

View File

@@ -162,7 +162,7 @@ function toggleCliStreamViewer() {
// ===== WebSocket Event Handlers =====
function handleCliStreamStarted(payload) {
const { executionId, tool, mode, timestamp } = payload;
// Create new execution record
cliStreamExecutions[executionId] = {
tool: tool || 'cli',