From bd6825a274a6ce1232a5c2d1abb78154003eda17 Mon Sep 17 00:00:00 2001 From: Jin Yi Date: Fri, 14 Nov 2025 11:11:58 +0900 Subject: [PATCH] [style] Fix missing node modal styling (#6672) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Summary - Fix background and border colors in the missing nodes modal to use semantic theme values - Replace `ContentDivider` component with Tailwind border utilities for cleaner code - Update widget background from `bg-component-node-widget-background` to `bg-secondary-background` - Update text color from `text-text-secondary` to `text-muted-foreground` - Add root-level dialog styling to ensure proper background and border colors ## Test plan - [x] Open a workflow with missing nodes - [x] Verify the missing nodes modal displays with correct background colors - [x] Verify border colors match the design system - [x] Verify text is readable with proper contrast Before before After after 🤖 Generated with [Claude Code](https://claude.com/claude-code) ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-6672-style-Fix-missing-node-modal-styling-2aa6d73d365081aea0f5eee35bc27ea7) by [Unito](https://www.unito.io) --------- Co-authored-by: GitHub Action Co-authored-by: Alexander Brown --- .../dialog/content/CloudMissingNodesContent.vue | 11 +++++------ src/services/dialogService.ts | 1 + 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/components/dialog/content/CloudMissingNodesContent.vue b/src/components/dialog/content/CloudMissingNodesContent.vue index 108bfd0e30..fc6b67c4b6 100644 --- a/src/components/dialog/content/CloudMissingNodesContent.vue +++ b/src/components/dialog/content/CloudMissingNodesContent.vue @@ -1,6 +1,7 @@