From 16879cc992bbc8d8ec256b8d2319532bc6177470 Mon Sep 17 00:00:00 2001 From: Theodore Li Date: Fri, 24 Jul 2026 10:37:44 -0700 Subject: [PATCH] fix(chat): sweep the text shimmer left-to-right again MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit #5671 rewrote the shimmer-sweep keyframes to run 100% -> -100%, which is already left-to-right, but left the `reverse` from #5650 on the animation shorthand. The two flips cancel into a right-to-left sweep on every ShimmerText consumer: subagent labels, tool-call rows, and the new agent-stream thinking chrome. Drop `reverse` so direction lives in exactly one place — the keyframes. --- apps/sim/components/ui/shimmer-text.module.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/sim/components/ui/shimmer-text.module.css b/apps/sim/components/ui/shimmer-text.module.css index d99f8740a04..f5a727623e4 100644 --- a/apps/sim/components/ui/shimmer-text.module.css +++ b/apps/sim/components/ui/shimmer-text.module.css @@ -13,7 +13,7 @@ -webkit-background-clip: text; background-clip: text; color: transparent; - animation: shimmer-sweep 2.2s linear infinite reverse; + animation: shimmer-sweep 2.2s linear infinite; } :global(.dark) .shimmer {