From 66882f9bf889add5b4eab1be5c038298c8494fe2 Mon Sep 17 00:00:00 2001 From: Anthony Goddard Date: Thu, 12 Feb 2026 17:33:24 -1000 Subject: [PATCH] remove blue focus from chat textbox, leaving blinker as focus indicator --- frontend/src/components/chat/ChatPanel.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/src/components/chat/ChatPanel.tsx b/frontend/src/components/chat/ChatPanel.tsx index 34d0cd8f..40cc66af 100644 --- a/frontend/src/components/chat/ChatPanel.tsx +++ b/frontend/src/components/chat/ChatPanel.tsx @@ -1,6 +1,6 @@ // Copyright 2026 Rob Macrae. All rights reserved. // SPDX-License-Identifier: LicenseRef-Proprietary -// REVISION: chat-v5-markdown +// REVISION: chat-input-focus-v1-remove-blue-outline "use client"; @@ -11,7 +11,7 @@ * Messages appear in a popover above the input. */ -const CHAT_PANEL_REVISION = "chat-v5-markdown"; +const CHAT_PANEL_REVISION = "chat-input-focus-v1-remove-blue-outline"; console.log(`[ChatPanel] REVISION: ${CHAT_PANEL_REVISION} loaded at ${new Date().toISOString()}`); import * as React from "react"; @@ -283,7 +283,7 @@ export function ChatPanel({ dashboardId, className, onUICommand }: ChatPanelProp placeholder="Ask Orcabot..." disabled={isStreaming} className={cn( - "flex-1 bg-transparent border-0 outline-none", + "flex-1 bg-transparent border-0 outline-none focus-visible:outline-none", "text-xs placeholder:text-muted-foreground", "disabled:opacity-50" )}