summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjoonhoekim <26rote@gmail.com>2025-11-10 17:43:10 +0900
committerjoonhoekim <26rote@gmail.com>2025-11-10 17:43:10 +0900
commita8ea14922ded4589005ef44164e25d07409ec215 (patch)
tree74031679be1c6ddf92967ad9b4bf559f11ebe15b
parentcad50d4d625cec610bc3985db95a5025cc044157 (diff)
(김준회) global.css: toast-ui-editor 를 위한 선택자 제거
-rw-r--r--app/globals.css31
1 files changed, 0 insertions, 31 deletions
diff --git a/app/globals.css b/app/globals.css
index 642fbebb..465dd0e0 100644
--- a/app/globals.css
+++ b/app/globals.css
@@ -250,34 +250,3 @@ th[data-read-only="true"] {
border-left: 1px solid hsl(var(--border));
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;
-}
-