From cd8a594e050496a6c5079e7b2aa5cfce233493a4 Mon Sep 17 00:00:00 2001 From: king Date: Tue, 1 Sep 2026 20:24:48 +0900 Subject: [PATCH] =?UTF-8?q?style(cupang):=20=EC=83=81=EC=9E=90=20=EB=AA=A9?= =?UTF-8?q?=EB=A1=9D=20=EC=97=91=EC=85=80=20=EB=B2=84=ED=8A=BC=20=EA=B8=80?= =?UTF-8?q?=EC=9E=90=20=ED=9D=B0=EC=83=89=20=EA=B3=A0=EC=A0=95,=20?= =?UTF-8?q?=EC=98=A4=EB=B2=84=20=EC=8B=9C=20=EA=B5=B5=EA=B2=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit .erp-body a { color: inherit } 에 밀려 글자가 검게 나오던 문제 — a+클래스 선택자로 흰색 지정 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/centers.html | 2 +- app/modules/cupang/templates/cupang/index.html | 2 +- app/modules/cupang/templates/cupang/products.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 0010c26..d22f741 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 707d33d..25f226e 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/centers.html b/app/modules/cupang/templates/cupang/centers.html index e4d1bb2..be3a93c 100644 --- a/app/modules/cupang/templates/cupang/centers.html +++ b/app/modules/cupang/templates/cupang/centers.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 9334a10..15450d4 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 54dc8f3..683a74e 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/view.html b/app/modules/cupang/templates/cupang/view.html index d382999..013c768 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 8dbb922..35e9db5 100644 --- a/app/static/cupang.css +++ b/app/static/cupang.css @@ -1402,9 +1402,12 @@ body.cpg-dragging { cursor: grabbing; user-select: none; } /* ── 출고 보기 ② 상자 목록 — 상자번호 · 제품명 · 제품코드 · 수량 ── */ .cpg-boxno-dl { font-size: 12px; padding: 4px 10px; - background: #217346; border-color: #217346; color: #fff; + background: #217346; border-color: #217346; } -.cpg-boxno-dl:hover { background: #1a5c38; border-color: #1a5c38; color: #fff; } +/* .erp-body a { color: inherit } (0,1,1) 를 이기려면 a + 클래스로 잡아야 한다. */ +a.cpg-boxno-dl, a.cpg-boxno-dl:link, a.cpg-boxno-dl:visited, +a.cpg-boxno-dl:hover, a.cpg-boxno-dl:active { color: #fff; } +a.cpg-boxno-dl:hover { background: #1a5c38; border-color: #1a5c38; font-weight: 700; } .cpg-boxno-count { margin-left: auto; font-size: 12px; color: var(--color-midtone-gray);