From ba2478d4610e7e7efe3fc92c74ee83343986c8c7 Mon Sep 17 00:00:00 2001 From: king Date: Wed, 2 Sep 2026 14:34:33 +0900 Subject: [PATCH] =?UTF-8?q?style(cupang):=20=EB=8B=AC=20=EC=9D=B4=EB=8F=99?= =?UTF-8?q?=20=ED=99=94=EC=82=B4=ED=91=9C=EB=A5=BC=20=EC=A7=A7=EA=B3=A0=20?= =?UTF-8?q?=EA=B5=B5=EC=9D=80=20SVG=20=EB=A1=9C=20=EA=B5=90=EC=B2=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 글꼴 글리프는 두께 조절이 안 돼 stroke-width 5.5 SVG 로 대체 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 | 14 +++++++++++--- app/modules/cupang/templates/cupang/products.html | 2 +- app/modules/cupang/templates/cupang/view.html | 2 +- app/static/cupang.css | 9 +++++++-- 6 files changed, 22 insertions(+), 9 deletions(-) diff --git a/app/modules/cupang/templates/cupang/box_calc.html b/app/modules/cupang/templates/cupang/box_calc.html index 52ce059..e7814dd 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 486f874..e248c66 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 b676bd3..4e96ad2 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 %}
@@ -22,10 +22,18 @@
+ href="/cupang/?year={{ prev_y }}&month={{ prev_m }}"> + +

{{ months[0].label }} – {{ months[1].label }}

+ href="/cupang/?year={{ next_y }}&month={{ next_m }}"> + +
diff --git a/app/modules/cupang/templates/cupang/products.html b/app/modules/cupang/templates/cupang/products.html index e5c7ffe..097124a 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 ef697b6..3a23736 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 5349472..8044ef0 100644 --- a/app/static/cupang.css +++ b/app/static/cupang.css @@ -1042,12 +1042,17 @@ body.cpg-dragging { cursor: grabbing; user-select: none; } } .cpg-mcal-navbtn { display: inline-flex; align-items: center; justify-content: center; - width: 48px; height: 36px; + width: 44px; height: 36px; border: 0; background: none; border-radius: 8px; - font-size: 32px; font-weight: 700; line-height: 1; color: var(--color-deep-black); text-decoration: none; transition: background .12s, transform .12s; } +/* 짧고 굵은 화살표 — 글꼴 글리프 대신 SVG 로 두께를 직접 준다 */ +.cpg-mcal-arrow { + width: 30px; height: 26px; + fill: none; stroke: currentColor; + stroke-width: 5.5; stroke-linecap: round; stroke-linejoin: round; +} .cpg-mcal-navbtn:hover { background: var(--color-ghost-gray); } .cpg-mcal-navbtn:active { transform: scale(.94); } .cpg-mcal-range {