Upgrade Tailwind CSS from 3 to 4 with CSS-first config migration

Migrate tailwind.config.js to @theme in CSS, replace PostCSS plugins
with @tailwindcss/postcss, add @reference to 12 Vue scoped styles using
@apply, and remove autoprefixer (now built into Tailwind 4).

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-06 11:29:03 +08:00
parent 08688793ac
commit 4e22643999
17 changed files with 866 additions and 1499 deletions

View File

@@ -130,6 +130,7 @@ export default {
}
</script>
<style scoped>
@reference "../../../../assets/tailwind.css";
.ghostSelected {
@apply bg-primary/20
}

View File

@@ -277,6 +277,7 @@ export default {
}
</script>
<style scoped>
@reference "../../../assets/tailwind.css";
/* 進度條顏色 */
:deep(.p-progressbar .p-progressbar-value) {
@apply bg-primary

View File

@@ -158,6 +158,7 @@ export default {
}
</script>
<style scoped>
@reference "../../../../assets/tailwind.css";
.ghostSelected {
@apply shadow-[0px_0px_100px_-10px_inset] shadow-neutral-200
}

View File

@@ -726,6 +726,7 @@ export default {
}
</script>
<style scoped>
@reference "../../../../assets/tailwind.css";
:deep(table tbody td:nth-child(2)) {
@apply whitespace-nowrap break-keep overflow-hidden text-ellipsis max-w-0
}

View File

@@ -125,6 +125,7 @@ export default {
</script>
<style scoped>
@reference "../../../../assets/tailwind.css";
/* TimeLine */
:deep(.p-timeline) {
@apply leading-none my-4

View File

@@ -358,6 +358,7 @@ export default {
</script>
<style scoped>
@reference "../../../../assets/tailwind.css";
/* Table set */
:deep(.p-datatable-thead) {
@apply sticky top-0 left-0 z-10 bg-neutral-10

View File

@@ -370,6 +370,7 @@ export default {
</script>
<style scoped>
@reference "../../../assets/tailwind.css";
:deep(.p-progressbar .p-progressbar-value) {
@apply bg-primary
}

View File

@@ -278,6 +278,7 @@ export default {
</script>
<style scoped>
@reference "../../../assets/tailwind.css";
/* 進度條顏色 */
:deep(.p-progressbar .p-progressbar-value) {
@apply bg-primary

View File

@@ -163,6 +163,7 @@ export default {
}
</script>
<style scoped>
@reference "../../assets/tailwind.css";
:deep(.p-progressbar .p-progressbar-value) {
@apply bg-neutral-900
}