From e04d2dd62fedcad43300e70a9411482d76a8aa9b Mon Sep 17 00:00:00 2001 From: DrJKL Date: Sat, 22 Nov 2025 15:14:25 -0800 Subject: [PATCH] Style: Fix the filter/search/sort controls on the Template Select Modal --- .../custom/widget/WorkflowTemplateSelectorDialog.vue | 2 +- src/components/input/MultiSelect.vue | 6 +++--- src/components/input/SearchBox.vue | 4 ++-- src/components/input/SingleSelect.vue | 6 +++--- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/src/components/custom/widget/WorkflowTemplateSelectorDialog.vue b/src/components/custom/widget/WorkflowTemplateSelectorDialog.vue index 890f148061..a1174aa100 100644 --- a/src/components/custom/widget/WorkflowTemplateSelectorDialog.vue +++ b/src/components/custom/widget/WorkflowTemplateSelectorDialog.vue @@ -92,7 +92,7 @@ class="w-62.5" > diff --git a/src/components/input/MultiSelect.vue b/src/components/input/MultiSelect.vue index 74a7035b19..9a54ae9e3c 100644 --- a/src/components/input/MultiSelect.vue +++ b/src/components/input/MultiSelect.vue @@ -17,7 +17,7 @@ root: ({ props }: MultiSelectPassThroughMethodOptions) => ({ class: cn( 'h-10 relative inline-flex cursor-pointer select-none', - 'rounded-lg bg-base-background text-base-foreground', + 'rounded-lg bg-secondary-background text-base-foreground', 'transition-all duration-200 ease-in-out', 'border-[2.5px] border-solid', selectedCount > 0 @@ -127,7 +127,7 @@