diff --git a/web/src/components/playground/MessageContent.js b/web/src/components/playground/MessageContent.js index 6d0e3974..77b10c5a 100644 --- a/web/src/components/playground/MessageContent.js +++ b/web/src/components/playground/MessageContent.js @@ -215,7 +215,15 @@ const MessageContent = ({ > {message.isReasoningExpanded && (
-
+
.semi-table-row { + + .semi-table-tbody>.semi-table-row { border-bottom: 1px solid rgba(0, 0, 0, 0.1); } } @@ -217,11 +214,28 @@ code { scrollbar-width: none; } -/* 调试面板代码样式 */ -.debug-code { - font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace; - font-size: 11px; - line-height: 1.4; +/* 思考内容区域滚动条样式 */ +.thinking-content-scroll::-webkit-scrollbar { + width: 6px; + height: 6px; +} + +.thinking-content-scroll::-webkit-scrollbar-thumb { + background: rgba(0, 0, 0, 0.2); + border-radius: 3px; +} + +.thinking-content-scroll::-webkit-scrollbar-thumb:hover { + background: rgba(0, 0, 0, 0.3); +} + +.thinking-content-scroll::-webkit-scrollbar-track { + background: transparent; +} + +.thinking-content-scroll { + scrollbar-width: thin; + scrollbar-color: rgba(0, 0, 0, 0.2) transparent; } /* 调试面板标签样式 */