style:解决展示不清楚的bug

This commit is contained in:
Roe-xin
2026-01-09 18:15:30 +08:00
parent a85a044a9b
commit 8da1177bf3

View File

@ -98,24 +98,24 @@ export function getAgentCardStyles(): string {
} }
/* 低调显示的工具调用样式 */ /* 低调显示的工具调用样式 */
.agent-step.low-profile { .agent-step.low-profile {
opacity: 0.5; opacity: 0.85;
font-size: 10px; font-size: 12px;
padding: 2px 6px; padding: 4px 8px;
background: transparent; background: transparent;
margin-bottom: 2px; margin-bottom: 2px;
} }
.agent-step.low-profile .step-icon { .agent-step.low-profile .step-icon {
opacity: 0.4; opacity: 0.8;
font-size: 10px; font-size: 12px;
} }
.agent-step.low-profile .step-name { .agent-step.low-profile .step-name {
font-weight: 300; font-weight: 400;
color: var(--vscode-descriptionForeground); color: var(--vscode-descriptionForeground);
opacity: 0.7; opacity: 0.9;
} }
.agent-step.low-profile .step-result { .agent-step.low-profile .step-result {
opacity: 0.6; opacity: 0.85;
font-size: 9px; font-size: 11px;
} }
`; `;
} }