From 413da331f620a357c6a607d2e9575030379fd7b8 Mon Sep 17 00:00:00 2001 From: yabo0812 Date: Thu, 23 Oct 2025 19:32:02 +0900 Subject: [PATCH] =?UTF-8?q?Todo=20=EC=B9=B4=EB=93=9C=20=EB=94=94=EC=9E=90?= =?UTF-8?q?=EC=9D=B8=20=ED=86=B5=EC=9D=BC=20=EB=B0=8F=20D-day=20=EB=B0=B0?= =?UTF-8?q?=EC=A7=80=20=EC=8A=A4=ED=83=80=EC=9D=BC=20=EA=B0=9C=EC=84=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - common.css에 D-day 배지 스타일 추가 (.badge-dday, .badge-warning, .badge-primary, .badge-secondary) - common.js의 getTodoStatusInfo 함수 개선 (D-day 색상 체계 통일) - 대시보드: 모바일에서 통계 카드 이모지 숨김 처리 - 회의록상세조회: 중복 Todo 스타일 제거, 배지 클래스 수정 - 모든 화면에서 일관된 D-day 배지 색상 적용 * D+N (지연): 빨간색 * D-Day: 녹색 테두리 * D-1~3: 주황색 테두리 * D-4~7: 파란색 테두리 * D-8+: 회색 테두리 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- design/uiux/prototype/02-대시보드.html | 11 +++++- design/uiux/prototype/09-Todo관리.html | 2 +- design/uiux/prototype/10-회의록상세조회.html | 39 ++------------------ design/uiux/prototype/12-회의록목록조회.html | 2 +- design/uiux/prototype/common.css | 25 +++++++++++++ design/uiux/prototype/common.js | 11 ++++-- 6 files changed, 46 insertions(+), 44 deletions(-) diff --git a/design/uiux/prototype/02-대시보드.html b/design/uiux/prototype/02-대시보드.html index a0279a5..991a7c7 100644 --- a/design/uiux/prototype/02-대시보드.html +++ b/design/uiux/prototype/02-대시보드.html @@ -279,6 +279,13 @@ margin-bottom: var(--space-xs); } + /* 모바일에서 이모지 숨김 */ + @media (max-width: 767px) { + .stat-icon { + display: none; + } + } + .stat-number { font-size: var(--font-h1); font-weight: var(--font-weight-bold); @@ -502,7 +509,7 @@