.
All checks were successful
Deploy blog-frontend / build-and-deploy (push) Successful in 2m12s

This commit is contained in:
박원엽
2026-05-29 12:30:28 +09:00
parent 3ecccbe28f
commit d264a7a139
3 changed files with 31 additions and 3 deletions

View File

@@ -432,9 +432,27 @@ html[data-theme="dark"] .w-md-editor-toolbar {
color: var(--color-text) !important;
}
.wy-editor-shell .w-md-editor-text {
color: var(--color-text) !important;
}
.wy-editor-shell .w-md-editor-text-pre,
.wy-editor-shell .w-md-editor-text-pre *,
.wy-editor-shell .w-md-editor-text-pre > code,
.wy-editor-shell .w-md-editor-text-pre code,
.wy-editor-shell .w-md-editor-text-pre .token,
.wy-editor-shell .w-md-editor-text-pre .punctuation {
color: transparent !important;
-webkit-text-fill-color: transparent !important;
}
.wy-editor-shell .w-md-editor-text-input {
opacity: 1 !important;
background: transparent !important;
color: var(--color-text) !important;
-webkit-text-fill-color: var(--color-text) !important;
caret-color: var(--color-accent);
text-shadow: none !important;
}
.wy-editor-shell .w-md-editor-text-input::placeholder {
@@ -442,8 +460,6 @@ html[data-theme="dark"] .w-md-editor-toolbar {
-webkit-text-fill-color: var(--color-text-subtle) !important;
}
.wy-editor-shell .w-md-editor-text-pre > code,
.wy-editor-shell .w-md-editor-text-pre code,
.wy-editor-shell .wmde-markdown,
.wy-editor-shell .wmde-markdown p,
.wy-editor-shell .wmde-markdown li,

View File

@@ -22,6 +22,7 @@ import {
import { getCategories } from '@/api/category';
import { uploadImage } from '@/api/image';
import { createPost, getPost, updatePost } from '@/api/posts';
import { useTheme } from '@/components/theme/ThemeProvider';
import Surface from '@/components/ui/Surface';
import WindowSurface from '@/components/ui/WindowSurface';
import { useAuthStore } from '@/store/authStore';
@@ -187,6 +188,7 @@ export default function AdminPostEditor({ editSlug }: AdminPostEditorProps) {
const router = useRouter();
const pathname = usePathname();
const queryClient = useQueryClient();
const { resolvedTheme } = useTheme();
const { isLoggedIn, role, _hasHydrated, accessToken, refreshToken, login } = useAuthStore();
const isAdmin = _hasHydrated && role?.includes('ADMIN');
const isEditMode = Boolean(editSlug);
@@ -528,12 +530,21 @@ export default function AdminPostEditor({ editSlug }: AdminPostEditorProps) {
className="mb-5 w-full rounded-lg border border-[var(--color-line)] bg-[var(--color-control)] px-4 py-3 text-2xl font-bold tracking-normal text-[var(--color-text)] outline-none transition placeholder:text-[var(--color-text-subtle)] focus:border-[var(--color-accent)] md:text-3xl"
/>
<div className="wy-editor-shell" data-color-mode="auto">
<div className="wy-editor-shell" data-color-mode={resolvedTheme}>
<MDEditor
value={content}
onChange={(value) => setContent(value || '')}
height={680}
preview="edit"
data-color-mode={resolvedTheme}
textareaProps={{
style: {
color: 'var(--color-text)',
WebkitTextFillColor: 'var(--color-text)',
caretColor: 'var(--color-accent)',
background: 'transparent',
},
}}
className="wy-markdown-editor"
/>
</div>