From 394b25545e5dea2e7268b708ad219ac845dd447d Mon Sep 17 00:00:00 2001 From: Alexander Brown Date: Sat, 22 Nov 2025 15:30:14 -0800 Subject: [PATCH] Style: Fix the filter/search/sort controls on the Template Select Modal (#6835) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Summary Background and text colors. ## Screenshot image ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-6835-Style-Fix-the-filter-search-sort-controls-on-the-Template-Select-Modal-2b36d73d3650816b9850e1b9f7feb25e) by [Unito](https://www.unito.io) --- .../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 890f148061a..a1174aa1002 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 74a7035b19f..9a54ae9e3c3 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 @@