From a82d54574f4ab7a2964cd41479910d1f0d55a39a Mon Sep 17 00:00:00 2001 From: king Date: Thu, 17 Sep 2026 15:33:01 +0900 Subject: [PATCH] =?UTF-8?q?fix(project):=20=EB=82=B4=20=EC=97=85=EB=AC=B4?= =?UTF-8?q?=20=EA=B0=9C=EC=88=98=20=EB=B0=B0=EC=A7=80=20=ED=8C=8C=EC=8A=A4?= =?UTF-8?q?=ED=85=94=ED=86=A4=EC=9C=BC=EB=A1=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Sonnet 5 --- app/modules/project/templates/project/inbox.html | 2 +- app/modules/project/templates/project/index.html | 2 +- app/modules/project/templates/project/project.html | 2 +- app/static/project.css | 7 ++++--- 4 files changed, 7 insertions(+), 6 deletions(-) diff --git a/app/modules/project/templates/project/inbox.html b/app/modules/project/templates/project/inbox.html index 309104d..dcfdca5 100644 --- a/app/modules/project/templates/project/inbox.html +++ b/app/modules/project/templates/project/inbox.html @@ -1,7 +1,7 @@ {% extends "erp_base.html" %} {% block head_extra %} - + {% endblock %} diff --git a/app/modules/project/templates/project/index.html b/app/modules/project/templates/project/index.html index ab6e228..4c534d7 100644 --- a/app/modules/project/templates/project/index.html +++ b/app/modules/project/templates/project/index.html @@ -1,7 +1,7 @@ {% extends "erp_base.html" %} {% block head_extra %} - + {% endblock %} diff --git a/app/modules/project/templates/project/project.html b/app/modules/project/templates/project/project.html index 830e911..e8a14c3 100644 --- a/app/modules/project/templates/project/project.html +++ b/app/modules/project/templates/project/project.html @@ -1,7 +1,7 @@ {% extends "erp_base.html" %} {% block head_extra %} - + diff --git a/app/static/project.css b/app/static/project.css index c642d07..ca11e95 100644 --- a/app/static/project.css +++ b/app/static/project.css @@ -415,10 +415,11 @@ .pj-mtc-num { display: inline-flex; align-items: center; justify-content: center; min-width: 18px; height: 18px; padding: 0 5px; border-radius: 999px; - font-size: 10.5px; font-weight: 800; color: #fff; + font-size: 10.5px; font-weight: 800; } -.pj-mtc-num.pj-mtc-open { background: #38bdf8; } /* 진행 = 하늘색 */ -.pj-mtc-num.pj-mtc-done { background: #e8384f; } /* 완료 = 빨강 */ +/* 파스텔톤 — 배경은 연하게, 글자는 진하게(눈에 덜 튀면서도 대비는 유지) */ +.pj-mtc-num.pj-mtc-open { background: #dcf1fc; color: #0284c7; } /* 진행 = 연한 하늘색 */ +.pj-mtc-num.pj-mtc-done { background: #fbe3df; color: #c22b10; } /* 완료 = 연한 빨강 */ .pj-mytree-tasks { list-style: none; margin: 2px 0 0; padding: 0 0 0 8px; border-left: 2px solid #eef0f2; margin-left: 10px; } .pj-mytree-group.is-collapsed .pj-mytree-tasks { display: none; } .pj-mytree-task a { display: flex; align-items: flex-start; gap: 7px; padding: 6px 6px; border-radius: 7px; text-decoration: none; color: inherit; }