fix(quickdock): 移除后台指令详情首行命令高亮

This commit is contained in:
JOJO 2026-07-26 00:56:26 +08:00
parent 7ed54456d6
commit eaa312acd4
2 changed files with 2 additions and 7 deletions

View File

@ -53,7 +53,7 @@
v-for="(line, i) in outputLines"
:key="i"
class="qd-feed-row feed-term"
:class="{ 'is-command': i === 0, 'is-new': animatedKeys.has(`term-${i}`) }"
:class="{ 'is-new': animatedKeys.has(`term-${i}`) }"
>
{{ line }}
</div>
@ -72,7 +72,7 @@ import { useBackgroundCommandStore } from '@/stores/backgroundCommand';
/**
* 详情面板fixed 浮在快捷窗口列左侧
* - 子智能体activity entries 时间线工具行 + 文本行
* - 后台指令终端输出行首行 $ 命令加粗
* - 后台指令终端输出行
* - 新行自动播 feed-in 动画距底 <80px 时新内容平滑滚到底用户上翻不打断
*/

View File

@ -705,11 +705,6 @@
min-height: 24px;
}
.qd-feed-row.feed-term.is-command {
color: var(--text-primary);
font-weight: 600;
}
.qd-feed-row.feed-killed {
color: var(--state-danger);
}