diff --git a/src-web/components/CommandPalette.tsx b/src-web/components/CommandPalette.tsx index 4886cb4d..dfe94a9c 100644 --- a/src-web/components/CommandPalette.tsx +++ b/src-web/components/CommandPalette.tsx @@ -392,8 +392,8 @@ export function CommandPalette({ onClose }: { onClose: () => void }) { ); return ( -
-
+
+
void }) { onKeyDownCapture={handleKeyDown} />
-
+
{filteredGroups.map((g) => (
@@ -459,8 +459,8 @@ function CommandPaletteItem({ justify="start" className={classNames( 'w-full h-sm flex items-center rounded px-1.5', - 'hover:text', - active && 'bg-surface-highlight-secondary text', + 'hover:text-text', + active && 'bg-surface-highlight', !active && 'text-text-subtle', )} > diff --git a/src-web/components/GrpcConnectionMessagesPane.tsx b/src-web/components/GrpcConnectionMessagesPane.tsx index 5bb7be70..6b9e5dec 100644 --- a/src-web/components/GrpcConnectionMessagesPane.tsx +++ b/src-web/components/GrpcConnectionMessagesPane.tsx @@ -188,7 +188,7 @@ function EventRow({ className={classNames( 'w-full grid grid-cols-[auto_minmax(0,3fr)_auto] gap-2 items-center text-left', 'px-1.5 py-1 font-mono cursor-default group focus:outline-none rounded', - isActive && '!bg-surface-highlight-secondary !text', + isActive && '!bg-surface-highlight !text', 'text-text-subtle hover:text', )} > diff --git a/src-web/components/Sidebar.tsx b/src-web/components/Sidebar.tsx index 4e9c6074..346b701e 100644 --- a/src-web/components/Sidebar.tsx +++ b/src-web/components/Sidebar.tsx @@ -872,9 +872,8 @@ function SidebarItem({ className={classNames( 'w-full flex gap-1.5 items-center h-xs px-1.5 rounded-md focus-visible:ring focus-visible:ring-border-focus outline-0', editing && 'ring-1 focus-within:ring-focus', - isActive && 'bg-surface-highlight-secondary text', - !isActive && - 'text-text-subtle group-hover/item:text-text active:bg-surface-highlight-secondary', + isActive && 'bg-surface-highlight text', + !isActive && 'text-text-subtle group-hover/item:text-text active:bg-surface-highlight', selected && useProminentStyles && '!bg-surface-active', )} > diff --git a/src-web/components/WindowControls.tsx b/src-web/components/WindowControls.tsx index 37277f3a..a8ea2522 100644 --- a/src-web/components/WindowControls.tsx +++ b/src-web/components/WindowControls.tsx @@ -23,7 +23,7 @@ export function WindowControls({ className, onlyX }: Props) { {!onlyX && ( <>