diff --git a/frontend/src/components/ui/alert-dialog.tsx b/frontend/src/components/ui/alert-dialog.tsx index 7f5c44b8..2ac4345c 100644 --- a/frontend/src/components/ui/alert-dialog.tsx +++ b/frontend/src/components/ui/alert-dialog.tsx @@ -14,7 +14,7 @@ const AlertDialogOverlay = React.forwardRef< >(({ className, ...props }, ref) => ( { return ( - + {/* The command palette is a menu/list surface, so it stays token-only like + dropdowns and tooltips: no accent wash behind the results. */} + {children} diff --git a/frontend/src/components/ui/dialog.tsx b/frontend/src/components/ui/dialog.tsx index 996cf0ae..2cb68319 100644 --- a/frontend/src/components/ui/dialog.tsx +++ b/frontend/src/components/ui/dialog.tsx @@ -20,14 +20,15 @@ import { // while delegating animation to animate-ui's spring-based dialog const DialogContent = React.forwardRef< HTMLDivElement, - React.ComponentProps & { showClose?: boolean } ->(({ className, children, showClose = true, ...props }, ref) => ( + React.ComponentProps & { showClose?: boolean; panelGlow?: boolean } +>(({ className, children, showClose = true, panelGlow = true, ...props }, ref) => ( - + (({ className, ...props }, ref) => (