From 9a5128149a56ee1a8d287bb32b750a1d398af507 Mon Sep 17 00:00:00 2001 From: Claude Date: Tue, 23 Jun 2026 00:22:01 +0000 Subject: [PATCH] Match sort picker to the opaque popover surface The favorites sort dropdown still used --glass-2, leaving it faintly see-through next to the now-opaque favorites and hydration menus. Point it at --glass-popover so all floating menus share the same surface. Co-Authored-By: Claude Opus 4.8 Claude-Session: https://claude.ai/code/session_01VDWtPAnqG2XzZB3rSnGb9J --- frontend/src/routes/favorites.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/routes/favorites.tsx b/frontend/src/routes/favorites.tsx index 2cca232..c0f2bcf 100644 --- a/frontend/src/routes/favorites.tsx +++ b/frontend/src/routes/favorites.tsx @@ -419,7 +419,7 @@ export default function FavoritesRoute() { top: 'calc(100% + 6px)', right: 0, minWidth: 160, - background: 'var(--glass-2)', + background: 'var(--glass-popover)', border: '1px solid var(--glass-edge)', borderRadius: 12, backdropFilter: 'blur(16px)',