From 1b309316158b0f9ba20dc9c59fd95da140ce7362 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Thu, 20 Nov 2025 12:37:16 +0100 Subject: [PATCH] style: add custom-scrollbar styling to all dialog scrollable areas MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added custom-scrollbar class to scrollable elements in: - EffectBrowser dialog content area - ProjectsDialog projects list - CommandPalette results list - Modal content area - TrackList automation parameter label containers This ensures consistent scrollbar styling across all dialogs and UI elements. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- components/dialogs/ProjectsDialog.tsx | 2 +- components/effects/EffectBrowser.tsx | 2 +- components/tracks/TrackList.tsx | 4 ++-- components/ui/CommandPalette.tsx | 2 +- components/ui/Modal.tsx | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/components/dialogs/ProjectsDialog.tsx b/components/dialogs/ProjectsDialog.tsx index 94ac591..762964f 100644 --- a/components/dialogs/ProjectsDialog.tsx +++ b/components/dialogs/ProjectsDialog.tsx @@ -76,7 +76,7 @@ export function ProjectsDialog({ {/* Projects List */} -
+
{projects.length === 0 ? (
diff --git a/components/effects/EffectBrowser.tsx b/components/effects/EffectBrowser.tsx index 2c046e2..ee6e49c 100644 --- a/components/effects/EffectBrowser.tsx +++ b/components/effects/EffectBrowser.tsx @@ -105,7 +105,7 @@ export function EffectBrowser({ open, onClose, onSelectEffect }: EffectBrowserPr
{/* Content */} -
+
{Object.entries(filteredCategories).map(([category, effects]) => (
diff --git a/components/tracks/TrackList.tsx b/components/tracks/TrackList.tsx index 4a3f407..43b98ed 100644 --- a/components/tracks/TrackList.tsx +++ b/components/tracks/TrackList.tsx @@ -420,7 +420,7 @@ export function TrackList({ )} {/* Parameter labels - always visible */} -
+
{automatedParams.map((paramName, index) => ( +
{automatedParams.map((paramName, index) => ( {/* Results */} -
+
{Object.keys(groupedActions).length === 0 ? (
No commands found diff --git a/components/ui/Modal.tsx b/components/ui/Modal.tsx index a602242..105299b 100644 --- a/components/ui/Modal.tsx +++ b/components/ui/Modal.tsx @@ -102,7 +102,7 @@ export function Modal({
{/* Content */} -
+
{children}