From 4ebe080f047fb5e62f3e441853fc08213694cb68 Mon Sep 17 00:00:00 2001 From: ciregenz Date: Fri, 5 Jun 2026 11:36:26 -0700 Subject: [PATCH] [eric] chat: continue-chat banner and select-element button stop pulsing, static accents instead --- frontend/src/app/pages/AgentChat/AgentChat.tsx | 9 --------- .../pages/AgentChat/ChatInput/toolbar/ToolbarActions.tsx | 6 +----- 2 files changed, 1 insertion(+), 14 deletions(-) diff --git a/frontend/src/app/pages/AgentChat/AgentChat.tsx b/frontend/src/app/pages/AgentChat/AgentChat.tsx index 4139f9e8..da6867ba 100644 --- a/frontend/src/app/pages/AgentChat/AgentChat.tsx +++ b/frontend/src/app/pages/AgentChat/AgentChat.tsx @@ -1485,16 +1485,7 @@ const AgentChat: React.FC = ({ sessionId: sessionIdProp, onClose border: `1.5px solid ${c.accent.primary}`, background: `${c.accent.primary}08`, boxShadow: `0 0 12px ${c.accent.primary}25, inset 0 0 12px ${c.accent.primary}08`, - animation: 'continue-chat-glow 2s ease-in-out infinite', transition: 'background 0.15s, box-shadow 0.15s', - '@keyframes continue-chat-glow': { - '0%, 100%': { - boxShadow: `0 0 12px ${c.accent.primary}25, inset 0 0 12px ${c.accent.primary}08`, - }, - '50%': { - boxShadow: `0 0 20px ${c.accent.primary}40, inset 0 0 20px ${c.accent.primary}15`, - }, - }, '&:hover': { background: `${c.accent.primary}14`, boxShadow: `0 0 24px ${c.accent.primary}50, inset 0 0 20px ${c.accent.primary}18`, diff --git a/frontend/src/app/pages/AgentChat/ChatInput/toolbar/ToolbarActions.tsx b/frontend/src/app/pages/AgentChat/ChatInput/toolbar/ToolbarActions.tsx index 78af52ce..467a12c7 100644 --- a/frontend/src/app/pages/AgentChat/ChatInput/toolbar/ToolbarActions.tsx +++ b/frontend/src/app/pages/AgentChat/ChatInput/toolbar/ToolbarActions.tsx @@ -63,11 +63,7 @@ export const ToolbarActions: React.FC = ({ bgcolor: '#3b82f6', color: '#fff', '&:hover': { bgcolor: '#2563eb' }, - animation: 'selectBtnPulse 2s ease-in-out infinite', - '@keyframes selectBtnPulse': { - '0%, 100%': { boxShadow: '0 0 0 0 rgba(59,130,246,0.4)' }, - '50%': { boxShadow: '0 0 0 4px rgba(59,130,246,0.1)' }, - }, + boxShadow: '0 0 0 3px rgba(59,130,246,0.18)', } : { color: c.text.tertiary,