diff --git a/src/TaxBaik.Web/Pages/Shared/_BlogEditor.cshtml b/src/TaxBaik.Web/Pages/Shared/_BlogEditor.cshtml index 4f65fc7..02459a9 100644 --- a/src/TaxBaik.Web/Pages/Shared/_BlogEditor.cshtml +++ b/src/TaxBaik.Web/Pages/Shared/_BlogEditor.cshtml @@ -97,11 +97,17 @@ 공통 스타일
-
+
불러온 원본
-
@Model.Title
-
카테고리: @Model.CategoryId
-
발행: @(Model.IsPublished ? "예" : "아니오")
+
@Model.Title
+
+
카테고리
+
@Model.CategoryId
+
발행
+
@(Model.IsPublished ? "예" : "아니오")
+
썸네일
+
@(string.IsNullOrWhiteSpace(Model.ThumbnailUrl) ? "-" : Model.ThumbnailUrl)
+
@Html.Raw(Model.Content)
diff --git a/src/TaxBaik.Web/wwwroot/css/admin.css b/src/TaxBaik.Web/wwwroot/css/admin.css index 8b00d07..02b5331 100644 --- a/src/TaxBaik.Web/wwwroot/css/admin.css +++ b/src/TaxBaik.Web/wwwroot/css/admin.css @@ -1266,6 +1266,24 @@ textarea:focus-visible { margin-top: 0.25rem; } +.blog-editor-shell .admin-editor-source { + padding: 0.875rem 1rem; + border: 1px solid var(--border-color-light); + border-radius: var(--radius-lg); + background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%); +} + +.blog-editor-shell .admin-editor-source dt { + color: var(--text-secondary); + font-size: 0.78rem; +} + +.blog-editor-shell .admin-editor-source dd { + color: var(--text-primary); + font-size: 0.82rem; + overflow-wrap: anywhere; +} + /* ============================================================================ Responsive Design - Mobile First ============================================================================ */