From 9c4f34d134e0339a996fcb593897b60829d376d4 Mon Sep 17 00:00:00 2001 From: Chris Farhood Date: Wed, 11 Feb 2026 23:42:39 -0500 Subject: [PATCH] fix: use background-paper for drawer to match Headlamp standard Changed drawer backgroundColor from var(--mui-palette-background-default) to var(--mui-palette-background-paper) to match Headlamp's standard drawer and dialog style with proper opaque elevated surface. Generated with [Claude Code](https://claude.ai/code) via [Happy](https://happy.engineering) Co-Authored-By: Claude Co-Authored-By: Happy --- src/components/NamespacesListView.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/NamespacesListView.tsx b/src/components/NamespacesListView.tsx index 4145e06..75600dc 100644 --- a/src/components/NamespacesListView.tsx +++ b/src/components/NamespacesListView.tsx @@ -103,7 +103,7 @@ function NamespaceDetailPanel({ namespace, onClose }: NamespaceDetailPanelProps) top: 0, bottom: 0, width: '1000px', - backgroundColor: 'var(--mui-palette-background-default)', + backgroundColor: 'var(--mui-palette-background-paper)', color: 'var(--mui-palette-text-primary)', boxShadow: '-2px 0 8px rgba(0,0,0,0.15)', overflowY: 'auto',