From bfcdd055b2eb2c2eb99476f56ab3043436dd6f2e Mon Sep 17 00:00:00 2001 From: taekyoungc Date: Mon, 6 Jul 2026 19:44:19 +0900 Subject: [PATCH] =?UTF-8?q?style:=20=EB=AC=B8=EC=9D=98=EC=82=AC=ED=95=AD?= =?UTF-8?q?=20'=EB=8B=B5=EB=B3=80=20=EC=99=84=EB=A3=8C'=20=EB=B0=B0?= =?UTF-8?q?=EC=A7=80=20=EC=83=89=EC=83=81=20=ED=9A=8C=EC=83=89=EC=9C=BC?= =?UTF-8?q?=EB=A1=9C=20=ED=86=B5=EC=9D=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 목록형(index)의 '답변 완료' 배지를 teal → gray로 변경해 전체보기(all)와 통일. Co-Authored-By: Claude Opus 4.8 --- app/Views/admin/feedback/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Views/admin/feedback/index.php b/app/Views/admin/feedback/index.php index e224088..577a5dd 100644 --- a/app/Views/admin/feedback/index.php +++ b/app/Views/admin/feedback/index.php @@ -12,7 +12,7 @@ $badge = static function (string $s): string { $map = [ 'new' => 'bg-blue-50 text-blue-700', 'in_progress' => 'bg-amber-50 text-amber-700', - 'answered' => 'bg-teal-50 text-teal-700', + 'answered' => 'bg-gray-100 text-gray-500', 'done' => 'bg-emerald-50 text-emerald-700', 'hold' => 'bg-gray-100 text-gray-500', ];