From 49228dc1ffd02f58d935478776890486998597be Mon Sep 17 00:00:00 2001 From: king Date: Wed, 2 Sep 2026 16:22:41 +0900 Subject: [PATCH] =?UTF-8?q?style(cupang):=20=EB=A7=A4=EC=B6=9C=20=ED=91=9C?= =?UTF-8?q?=20=EB=A8=B8=EB=A6=AC=EA=B8=80=20=EA=B5=B5=EA=B2=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit .erp-table thead th (font-weight:500, 회색) 에 눌리지 않게 특이도를 올려 font-weight 800 + 검정으로 지정 Co-Authored-By: Claude Opus 5 --- app/modules/cupang/templates/cupang/box_calc.html | 2 +- app/modules/cupang/templates/cupang/box_rules.html | 2 +- app/modules/cupang/templates/cupang/index.html | 2 +- app/modules/cupang/templates/cupang/products.html | 2 +- app/modules/cupang/templates/cupang/sales.html | 2 +- app/modules/cupang/templates/cupang/view.html | 2 +- app/static/cupang.css | 7 +++++-- 7 files changed, 11 insertions(+), 8 deletions(-) diff --git a/app/modules/cupang/templates/cupang/box_calc.html b/app/modules/cupang/templates/cupang/box_calc.html index e8e64c6..f506468 100644 --- a/app/modules/cupang/templates/cupang/box_calc.html +++ b/app/modules/cupang/templates/cupang/box_calc.html @@ -1,6 +1,6 @@ {% extends "erp_base.html" %} -{% block head_extra %}{% endblock %} +{% block head_extra %}{% endblock %} {% block content %}
diff --git a/app/modules/cupang/templates/cupang/box_rules.html b/app/modules/cupang/templates/cupang/box_rules.html index 9d118d3..145db6b 100644 --- a/app/modules/cupang/templates/cupang/box_rules.html +++ b/app/modules/cupang/templates/cupang/box_rules.html @@ -1,6 +1,6 @@ {% extends "erp_base.html" %} -{% block head_extra %}{% endblock %} +{% block head_extra %}{% endblock %} {% block content %}
diff --git a/app/modules/cupang/templates/cupang/index.html b/app/modules/cupang/templates/cupang/index.html index 133b696..78ccb2a 100644 --- a/app/modules/cupang/templates/cupang/index.html +++ b/app/modules/cupang/templates/cupang/index.html @@ -1,6 +1,6 @@ {% extends "erp_base.html" %} -{% block head_extra %}{% endblock %} +{% block head_extra %}{% endblock %} {% block content %}
diff --git a/app/modules/cupang/templates/cupang/products.html b/app/modules/cupang/templates/cupang/products.html index 102feb5..71decaf 100644 --- a/app/modules/cupang/templates/cupang/products.html +++ b/app/modules/cupang/templates/cupang/products.html @@ -1,6 +1,6 @@ {% extends "erp_base.html" %} -{% block head_extra %}{% endblock %} +{% block head_extra %}{% endblock %} {% block content %}
diff --git a/app/modules/cupang/templates/cupang/sales.html b/app/modules/cupang/templates/cupang/sales.html index 965ea3f..f41e736 100644 --- a/app/modules/cupang/templates/cupang/sales.html +++ b/app/modules/cupang/templates/cupang/sales.html @@ -1,6 +1,6 @@ {% extends "erp_base.html" %} -{% block head_extra %}{% endblock %} +{% block head_extra %}{% endblock %} {% block content %} {# 쿠팡 로켓 매출 — 발주 라인별 공급가·원가·물류비·마진 #} diff --git a/app/modules/cupang/templates/cupang/view.html b/app/modules/cupang/templates/cupang/view.html index e08ba31..428ddb5 100644 --- a/app/modules/cupang/templates/cupang/view.html +++ b/app/modules/cupang/templates/cupang/view.html @@ -1,6 +1,6 @@ {% extends "erp_base.html" %} -{% block head_extra %}{% endblock %} +{% block head_extra %}{% endblock %} {% block content %} {# 출고 묶음 보기 — 상자 계산 화면과 같은 3열 구성. 읽기 전용(수정 없음). #} diff --git a/app/static/cupang.css b/app/static/cupang.css index 3735d64..8c9970f 100644 --- a/app/static/cupang.css +++ b/app/static/cupang.css @@ -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); }