mirror of
https://github.com/QwenLM/qwen-code.git
synced 2026-07-19 22:14:08 +00:00
* feat(web-shell): mark scheduled task turns in timeline * fix(web-shell): confine locate flash to message content * fix(web-shell): flash parallel agent locate target * fix(web-shell): keep scheduled marker source optional * fix(web-shell): omit default scheduled timeline flag * fix(web-shell): repair scheduled timeline UI conflict * fix(web-shell): remove stale shell output prop --------- Co-authored-by: qwen-code-dev-bot <qwen-code-dev-bot@users.noreply.github.com>
15 lines
256 B
CSS
15 lines
256 B
CSS
.flash {
|
|
border-radius: 8px;
|
|
animation: message-locate-flash 1.6s ease-out;
|
|
}
|
|
|
|
@keyframes message-locate-flash {
|
|
0%,
|
|
30% {
|
|
background: color-mix(in srgb, var(--agent-blue-500) 16%, transparent);
|
|
}
|
|
|
|
100% {
|
|
background: transparent;
|
|
}
|
|
}
|