@@ -53,7 +54,7 @@ $badge = static function (string $s): string {
| 접수된 의견이 없습니다. |
-
+
| = (int) $row->fb_idx ?> |
= esc((string) ($row->fb_regdate ?? '')) ?> |
= $badge((string) ($row->fb_status ?? 'new')) ?> |
@@ -68,3 +69,4 @@ $badge = static function (string $s): string {
= $pager->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; }