From d7f11dd85224ed5f99a6e995df5b96d7526f69cf Mon Sep 17 00:00:00 2001 From: Comfy Org PR Bot Date: Mon, 24 Nov 2025 05:58:07 +0900 Subject: [PATCH] [backport core/1.32] Style: Fix the filter/search/sort controls on the Template Select Modal (#6867) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Backport of #6835 to `core/1.32` Automatically created by backport workflow. ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-6867-backport-core-1-32-Style-Fix-the-filter-search-sort-controls-on-the-Template-Select-Mo-2b46d73d3650817ea7c1d8adfbc0a69e) by [Unito](https://www.unito.io) Co-authored-by: Alexander Brown --- .../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 890f14806..a1174aa10 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 74a7035b1..9a54ae9e3 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 @@