From fee454da5d8264bec14a0aaae552ab66eff4b490 Mon Sep 17 00:00:00 2001 From: Psychotoxical Date: Sun, 12 Apr 2026 18:44:40 +0200 Subject: [PATCH] fix(folder-browser): correct --bg-base to --bg-app in filter bar; add cucadmuh PR #165 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --bg-base is undefined — sticky filter bar would have rendered transparent. Also added PR #165 to cucadmuh's contributions in Settings About. Co-Authored-By: Claude Sonnet 4.6 --- src/pages/Settings.tsx | 1 + src/styles/components.css | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/pages/Settings.tsx b/src/pages/Settings.tsx index cb87641b..0c1a3b34 100644 --- a/src/pages/Settings.tsx +++ b/src/pages/Settings.tsx @@ -106,6 +106,7 @@ const CONTRIBUTORS = [ 'Hot playback cache — eviction budgeting, grace period, and live Audio settings readout (PR #153)', 'Folder Browser: keyboard navigation, context menus, now-playing path emphasis, and adaptive column layout (PR #158)', 'Infinite queue: artist-driven candidates via Top Songs + Similar Songs with random fallback (PR #163)', + 'Folder Browser: per-column filter with keyboard flow and Shift+Enter queue append (PR #165)', ], }, { diff --git a/src/styles/components.css b/src/styles/components.css index 811dd391..b11610f1 100644 --- a/src/styles/components.css +++ b/src/styles/components.css @@ -7273,7 +7273,7 @@ html.no-compositing .fs-lyrics-rail { top: 0; z-index: 2; padding: 0.35rem 0.45rem; - background: color-mix(in srgb, var(--bg-base) 92%, transparent); + background: color-mix(in srgb, var(--bg-app) 92%, transparent); border-bottom: 1px solid var(--border-subtle); }