summaryrefslogtreecommitdiff
path: root/app/globals.css
diff options
context:
space:
mode:
authorjoonhoekim <26rote@gmail.com>2025-10-23 18:13:41 +0900
committerjoonhoekim <26rote@gmail.com>2025-10-23 18:13:41 +0900
commit78c471eec35182959e0029ded18f144974ccaca2 (patch)
tree914cdf1c8f406ca3e2aa639b8bb774f7f4e87023 /app/globals.css
parent0be8940580c4a4a4e098b649d198160f9b60420c (diff)
(김준회) 결재 템플릿 에디터 및 결재 워크플로 공통함수 작성, 실사의뢰 결재 연결 예시 작성
Diffstat (limited to 'app/globals.css')
-rw-r--r--app/globals.css30
1 files changed, 30 insertions, 0 deletions
diff --git a/app/globals.css b/app/globals.css
index b1a58b0f..642fbebb 100644
--- a/app/globals.css
+++ b/app/globals.css
@@ -251,3 +251,33 @@ th[data-read-only="true"] {
border-right: 1px solid hsl(var(--border));
}
+/* Toast UI Editor 테이블 스타일 커스터마이징 */
+/* 에디터 내부 (편집 중) */
+.toastui-editor-contents table {
+ border-collapse: collapse;
+ width: 100%;
+}
+
+.toastui-editor-contents table thead th {
+ background-color: transparent !important; /* 헤더 배경 제거 */
+ border: 1px solid hsl(var(--border));
+ padding: 8px;
+ text-align: left;
+ font-weight: 600; /* 원하는 경우 폰트 굵기 조정 */
+}
+
+.toastui-editor-contents table tbody td {
+ border: 1px solid hsl(var(--border));
+ padding: 8px;
+}
+
+.toastui-editor-contents table tbody tr:hover {
+ background-color: hsl(var(--muted) / 0.3);
+}
+
+/* 미리보기 및 렌더링된 콘텐츠에도 동일한 스타일 적용 */
+.toastui-editor-ww-mode table thead th,
+.toastui-editor-md-mode table thead th {
+ background-color: transparent !important;
+}
+