style(cupang): 매출 표 머리글 굵게

.erp-table thead th (font-weight:500, 회색) 에 눌리지 않게 특이도를 올려
font-weight 800 + 검정으로 지정

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
2026-09-02 16:22:41 +09:00
parent f781204094
commit 49228dc1ff
7 changed files with 11 additions and 8 deletions
+5 -2
View File
@@ -1545,10 +1545,13 @@ a.cpg-boxno-dl:hover { background: #1a5c38; border-color: #1a5c38; font-weight:
padding: 4px 8px; font-size: 12px;
border-bottom: 1px solid var(--color-cloud-gray);
}
.cpg-sales-table thead th {
/* 머리글은 굵게 — .erp-table thead th(font-weight:500, color:회색) 를 덮는다 */
.cpg-sales .cpg-sales-table thead th {
position: sticky; top: 0; z-index: 2;
background: var(--color-ghost-gray);
font-weight: 700; text-align: center; white-space: nowrap;
font-weight: 800; font-size: 12px;
color: var(--color-deep-black);
text-align: center; white-space: nowrap;
}
.cpg-sales-table tbody tr:hover td { background: var(--color-ghost-gray); }
.cpg-sales-mono { font-family: var(--font-geist-mono); color: var(--color-midtone-gray); }