qwen-code/packages/web-shell/client/components/MessageLocateFlash.module.css
callmeYe 686326863a
fix(web-shell): polish scheduled task timeline UI (#6386)
* 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>
2026-07-07 04:04:28 +00:00

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;
}
}