From 1806c75ecba08e8efa22ff18117a1b03c1e3e48c Mon Sep 17 00:00:00 2001 From: king Date: Sat, 30 May 2026 08:54:11 +0900 Subject: [PATCH] =?UTF-8?q?ui(vacation):=20=EC=98=A4=EB=8A=98=20=EB=82=A0?= =?UTF-8?q?=EC=A7=9C=20pill=20=EB=B0=B0=EA=B2=BD=EC=9D=84=20=EC=9A=94?= =?UTF-8?q?=EC=9D=BC=EC=83=89(=EB=B9=A8=EA=B0=95/=ED=8C=8C=EB=9E=91/?= =?UTF-8?q?=EA=B2=80=EC=A0=95)=EC=97=90=20=EB=A7=9E=EC=B6=B0=20=ED=9D=B0?= =?UTF-8?q?=EA=B8=80=EC=94=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.8 --- app/modules/vacation/templates/vacation/detail.html | 2 +- app/modules/vacation/templates/vacation/form.html | 4 ++-- app/modules/vacation/templates/vacation/index.html | 2 +- app/modules/vacation/templates/vacation/pending.html | 2 +- app/modules/vacation/templates/vacation/settings.html | 2 +- app/static/vacation.css | 8 ++++++-- 6 files changed, 12 insertions(+), 8 deletions(-) diff --git a/app/modules/vacation/templates/vacation/detail.html b/app/modules/vacation/templates/vacation/detail.html index 89c0b40..af85452 100644 --- a/app/modules/vacation/templates/vacation/detail.html +++ b/app/modules/vacation/templates/vacation/detail.html @@ -1,6 +1,6 @@ {% extends "erp_base.html" %} -{% block head_extra %}{% endblock %} +{% block head_extra %}{% endblock %} {% block content %}
diff --git a/app/modules/vacation/templates/vacation/form.html b/app/modules/vacation/templates/vacation/form.html index 749a118..2d377ea 100644 --- a/app/modules/vacation/templates/vacation/form.html +++ b/app/modules/vacation/templates/vacation/form.html @@ -1,6 +1,6 @@ {% extends "erp_base.html" %} -{% block head_extra %}{% endblock %} +{% block head_extra %}{% endblock %} {% block content %}
@@ -68,4 +68,4 @@
{% endblock %} -{% block scripts %}{% endblock %} +{% block scripts %}{% endblock %} diff --git a/app/modules/vacation/templates/vacation/index.html b/app/modules/vacation/templates/vacation/index.html index 0541ae2..c8a75be 100644 --- a/app/modules/vacation/templates/vacation/index.html +++ b/app/modules/vacation/templates/vacation/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/vacation/templates/vacation/pending.html b/app/modules/vacation/templates/vacation/pending.html index 99f15c1..80607b4 100644 --- a/app/modules/vacation/templates/vacation/pending.html +++ b/app/modules/vacation/templates/vacation/pending.html @@ -1,6 +1,6 @@ {% extends "erp_base.html" %} -{% block head_extra %}{% endblock %} +{% block head_extra %}{% endblock %} {% block content %}
diff --git a/app/modules/vacation/templates/vacation/settings.html b/app/modules/vacation/templates/vacation/settings.html index 1f93370..30e188e 100644 --- a/app/modules/vacation/templates/vacation/settings.html +++ b/app/modules/vacation/templates/vacation/settings.html @@ -1,6 +1,6 @@ {% extends "erp_base.html" %} -{% block head_extra %}{% endblock %} +{% block head_extra %}{% endblock %} {% block content %}
diff --git a/app/static/vacation.css b/app/static/vacation.css index d7ab41b..6ceacab 100644 --- a/app/static/vacation.css +++ b/app/static/vacation.css @@ -85,9 +85,13 @@ .vac-out .vac-day-num { color: #bbb; } .vac-today { background: #f5f5f5; } .vac-today .vac-day-num { - background: var(--vac-black); color: #fff; border-radius: 9999px; - padding: 2px 9px; + background: var(--vac-black); + color: #fff !important; /* vac-red/vac-blue 글자색(!important) 이김 */ + border-radius: 9999px; padding: 2px 9px; } +/* 오늘이 일/공휴일=빨강배경, 토요일=파랑배경, 평일=검정배경 (모두 흰글씨) */ +.vac-today .vac-day-num.vac-red { background: var(--vac-red); } +.vac-today .vac-day-num.vac-blue { background: var(--vac-blue); } .vac-selected { box-shadow: inset 0 0 0 2px var(--vac-black); } .vac-red { color: var(--vac-red) !important; } .vac-blue { color: var(--vac-blue) !important; }