Skip to content

Commit 82f9fc4

Browse files
liyakharCopilot
andcommitted
fix(session-list): remove group-hover fade on project header action icons
The folder/terminal/browser icons in the project header used opacity-50 + group-hover:opacity-100, causing all three to fade in together when hovering anywhere on the project row. Switch to per-icon hover only so each icon behaves like every other icon button in the app. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 98fd55c commit 82f9fc4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/desktop/src/lib/acp/components/session-list/session-list-ui.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -607,7 +607,7 @@ function handleOpenGitPanel(event: MouseEvent, projectPath: string) {
607607
}
608608
609609
const projectHeaderHoverActionButtonClass =
610-
"flex items-center justify-center size-5 rounded text-muted-foreground transition-all hover:bg-accent hover:text-foreground opacity-50 group-hover:opacity-100 group-focus-within:opacity-100 focus-visible:opacity-100";
610+
"flex items-center justify-center size-5 rounded text-muted-foreground transition-colors hover:bg-accent hover:text-foreground";
611611
612612
function handleOpenFileExplorer(event: MouseEvent, group: SessionGroup): void {
613613
event.stopPropagation();

0 commit comments

Comments
 (0)