From 8a04ad64c3a71702d1923547f98170de2407e297 Mon Sep 17 00:00:00 2001 From: kurihada Date: Wed, 17 Dec 2025 11:30:33 +0800 Subject: [PATCH] =?UTF-8?q?fix(ui):=20=E7=BB=9F=E4=B8=80=20LSP=20=E6=8C=87?= =?UTF-8?q?=E7=A4=BA=E5=99=A8=E6=8C=89=E9=92=AE=E6=A0=B7=E5=BC=8F=E4=B8=8E?= =?UTF-8?q?=E5=B7=A5=E5=85=B7=E6=A0=8F=E5=85=B6=E4=BB=96=E6=8C=89=E9=92=AE?= =?UTF-8?q?=E4=B8=80=E8=87=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/ui/src/components/DiagnosticsIndicator.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/ui/src/components/DiagnosticsIndicator.tsx b/packages/ui/src/components/DiagnosticsIndicator.tsx index a32ba70..47f6dcd 100644 --- a/packages/ui/src/components/DiagnosticsIndicator.tsx +++ b/packages/ui/src/components/DiagnosticsIndicator.tsx @@ -158,13 +158,13 @@ export function DiagnosticsIndicator({ size="sm" onClick={onClickLSP} className={cn( - 'flex items-center gap-1 px-2 py-1 h-auto min-h-0', - 'hover:bg-surface-base/50 transition-colors', - runningServers > 0 ? 'text-green-400' : 'text-fg-subtle' + 'flex items-center gap-1 p-1.5 h-auto min-h-0', + 'hover:bg-surface-muted transition-colors', + runningServers > 0 ? 'text-green-400' : 'text-fg-muted hover:text-fg-secondary' )} title={`${runningServers} Language Server${runningServers !== 1 ? 's' : ''} Running`} > - + {runningServers > 0 && {runningServers}}