Conversation
hyoban
approved these changes
May 6, 2026
Codecov Report❌ Patch coverage is Additional details and impacted files@@ Coverage Diff @@
## main #35829 +/- ##
==========================================
- Coverage 85.81% 85.81% -0.01%
==========================================
Files 4459 4459
Lines 208966 208988 +22
Branches 39064 39063 -1
==========================================
+ Hits 179329 179341 +12
- Misses 26470 26480 +10
Partials 3167 3167
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR finishes the Tailwind v4 cleanup work around the existing CSS-first migration and removes the most visible compatibility leftovers in touched UI surfaces.
tailwind-core.cssand replaces affected call sites with explicit design-system border tokensoutline-noneusage with forced-color-safeoutline-hidden, and adds visiblefocus-visiblerings where needed@langgenius/dify-uiDialog / AlertDialog primitivesopen/onOpenChangeso Base UI enter/exit transitions can runTailwind v4 status
The web app is now effectively using the v4 CSS-first architecture for the main Tailwind integration:
tailwind.config.*project config is used@import,@theme,@theme inline,@utility, and CSS-level@pluginw-50,w-100,w-120One intentional exception remains:
@tailwindcss/typographyis still registered through the CSS entry because develop MDX docs still depend onprose,prose-xl,prose-invert, andnot-prose. Its current local JS customization can be migrated separately, but removing it in this PR would cause documentation styling regressions.Testing
pnpm exec eslint --fix --pass-on-unpruned-suppressions ...on touched filespnpm test -- app/components/app/configuration/dataset-config/select-dataset/__tests__/index.spec.tsx app/components/app/configuration/__tests__/configuration-view.spec.tsx app/components/workflow/nodes/knowledge-retrieval/__tests__/integration.spec.tsx app/components/workflow/__tests__/dsl-export-confirm-modal.spec.tsx app/components/app-sidebar/app-info/__tests__/app-info-modals.spec.tsxpnpm test -- app/components/app-sidebar/app-info/__tests__/app-operations.spec.tsxpnpm type-check