diff --git a/app/Views/admin/feedback/all.php b/app/Views/admin/feedback/all.php index 54a33c4..9fa67d1 100644 --- a/app/Views/admin/feedback/all.php +++ b/app/Views/admin/feedback/all.php @@ -22,6 +22,7 @@ $badge = static function (string $s): string { return '' . esc(FeedbackModel::statusLabel($s)) . ''; }; ?> +
사용자 의견 · 전체보기 (건)
@@ -115,3 +116,4 @@ $badge = static function (string $s): string {
+
diff --git a/app/Views/admin/feedback/index.php b/app/Views/admin/feedback/index.php index a6eafda..e224088 100644 --- a/app/Views/admin/feedback/index.php +++ b/app/Views/admin/feedback/index.php @@ -20,6 +20,7 @@ $badge = static function (string $s): string { return '' . esc(FeedbackModel::statusLabel($s)) . ''; }; ?> +
사용자 의견
@@ -53,7 +54,7 @@ $badge = static function (string $s): string { 접수된 의견이 없습니다. - + fb_idx ?> fb_regdate ?? '')) ?> fb_status ?? 'new')) ?> @@ -68,3 +69,4 @@ $badge = static function (string $s): string {
links() ?>
+
diff --git a/app/Views/admin/layout.php b/app/Views/admin/layout.php index 512ed63..54fc564 100644 --- a/app/Views/admin/layout.php +++ b/app/Views/admin/layout.php @@ -91,6 +91,13 @@ tailwind.config = { .data-table tbody td { color: #374151; } .data-table tbody tr:last-child td { border-bottom: 0; } .data-table tbody tr:hover td { background-color: #f9fafb; } +/* body의 select-none 상속을 무효화해 본문 텍스트를 드래그·복사할 수 있게 하는 opt-in 클래스 */ +.fb-selectable, .fb-selectable * { + -webkit-user-select: text; + -moz-user-select: text; + -ms-user-select: text; + user-select: text; +} @media print { .portal-header, .sidebar, .portal-footer, .no-print, nav.portal-top-nav { display: none !important; } body.gov-portal-shell { background: #fff; display: block; }