style(cupang): 등록 제품 표 한 줄 고정 (긴 이름/코드는 … 처리)

table-layout: fixed + 열 폭 지정, 셀 nowrap/ellipsis, 동작 버튼 한 줄.
잘린 값은 title 툴팁으로 전체 확인.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
2026-09-01 12:07:15 +09:00
parent 418166d810
commit 163c6c2f00
8 changed files with 35 additions and 10 deletions
+25
View File
@@ -1093,3 +1093,28 @@ body.cpg-dragging { cursor: grabbing; user-select: none; }
color: var(--color-midtone-gray);
font-size: 12px;
}
/* ── 설정(제품명) 등록 목록 표 — 한 줄 고정 (넘치면 … 처리) ── */
.cpg-prod-right .erp-table { table-layout: fixed; width: 100%; }
.cpg-prod-right .erp-table thead th,
.cpg-prod-right .erp-table tbody td {
padding: 8px 10px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
vertical-align: middle;
}
/* 제품명(남는 폭) / 제품코드 / 쿠팡상품코드 / 상태 / 동작 */
.cpg-prod-right .erp-table th:nth-child(2),
.cpg-prod-right .erp-table td:nth-child(2) { width: 96px; }
.cpg-prod-right .erp-table th:nth-child(3),
.cpg-prod-right .erp-table td:nth-child(3) { width: 104px; }
.cpg-prod-right .erp-table th:nth-child(4),
.cpg-prod-right .erp-table td:nth-child(4) { width: 62px; }
.cpg-prod-right .erp-table th:nth-child(5),
.cpg-prod-right .erp-table td:nth-child(5) { width: 108px; }
.cpg-prod-right .cpg-sort { max-width: 100%; overflow: hidden; text-overflow: ellipsis; }
/* 동작 버튼은 가로 한 줄 */
.cpg-prod-right .cpg-row-actions { flex-wrap: nowrap; gap: 4px; }
.cpg-prod-right .cpg-row-actions .erp-btn { padding: 3px 8px; font-size: 12px; line-height: 1.5; }
.cpg-prod-right .cpg-active-toggle { white-space: nowrap; }