From ebcec3f296d1d27943caf8a3aed26efef117cdc5 Mon Sep 17 00:00:00 2001 From: joonhoekim <26rote@gmail.com> Date: Tue, 9 Sep 2025 06:51:44 +0000 Subject: (김준회) 돌체 관련, 다크모드 지원하도록 개선 - 가능하면 시멘틱 색상 사용(muted, muted-foreground) - 어려운 컬러는 dark: 변수로 다크모드 클래스 지정 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../user-vendor-document-table-container.tsx | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'components/ship-vendor-document/user-vendor-document-table-container.tsx') diff --git a/components/ship-vendor-document/user-vendor-document-table-container.tsx b/components/ship-vendor-document/user-vendor-document-table-container.tsx index c9118cd0..7fac34a9 100644 --- a/components/ship-vendor-document/user-vendor-document-table-container.tsx +++ b/components/ship-vendor-document/user-vendor-document-table-container.tsx @@ -290,7 +290,7 @@ function RevisionTable({ {revision.usageType ? ( revision.usageType ) : ( - - + - )} @@ -312,12 +312,12 @@ function RevisionTable({ {revision.comment ? (
-

+

{revision.comment}

) : ( - - + - )}
@@ -332,7 +332,7 @@ function RevisionTable({ {revision.attachments.length} {/* ✅ 처리된 파일 수 표시 */} {processStatus === 'partially-processed' && ( - + ({revision.attachments.filter(att => att.dolceFilePath && att.dolceFilePath.trim() !== '' ).length} processed) @@ -363,7 +363,7 @@ function RevisionTable({ className={`h-8 px-2 ${ canEdit ? 'text-blue-600 hover:text-blue-700 hover:bg-blue-50' - : 'text-gray-400 cursor-not-allowed' + : 'text-muted-foreground cursor-not-allowed' }`} disabled={!canEdit} title={ @@ -610,7 +610,7 @@ function AttachmentTable({ className={`h-8 px-2 ${ canDeleteFile(file) ? 'text-red-600 hover:text-red-700 hover:bg-red-50' - : 'text-gray-400 cursor-not-allowed' + : 'text-muted-foreground cursor-not-allowed' }`} disabled={!canDeleteFile(file) || deletingFileId === file.id} title={ @@ -1225,16 +1225,16 @@ function SelectedDocumentInfo() { } return ( -
+
Document: {doc.docNumber} - + {doc.title}
-
+
Total {totalRevisions} revisions {selectedRevision && ( @@ -1302,8 +1302,8 @@ export function UserVendorDocumentDisplay({
- -

Unable to load data.

+ +

Unable to load data.

-- cgit v1.2.3