From d90b1c57e5acd4caffe6e0e9dde10f77e9346091 Mon Sep 17 00:00:00 2001 From: JustACodeA Date: Fri, 19 Dec 2025 17:25:29 +0100 Subject: [PATCH] feat: add hover animation to conversation context menu button (#2168) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * feat: add hover animation to conversation context menu button Adds visual feedback when hovering over the three-dot menu button in conversation tiles. This makes it clear that the submenu is being targeted rather than the parent item. Changes: - Added rounded hover background with smooth transition - Increased clickable area for better UX - Supports both light and dark themes Closes #2097 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude * Update frontend/src/conversation/ConversationTile.tsx Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --------- Co-authored-by: Claude Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- frontend/src/conversation/ConversationTile.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/conversation/ConversationTile.tsx b/frontend/src/conversation/ConversationTile.tsx index b18b59fc..fe1a8fa1 100644 --- a/frontend/src/conversation/ConversationTile.tsx +++ b/frontend/src/conversation/ConversationTile.tsx @@ -248,7 +248,7 @@ export default function ConversationTile({ event.stopPropagation(); setOpen(!isOpen); }} - className="mr-2 flex w-4 justify-center" + className="mr-2 flex h-6 w-6 items-center justify-center rounded-full transition-colors duration-200 hover:bg-gray-200 dark:hover:bg-gray-700" > menu