From 394c88e52fd10bdb004815b5cab922f995ac0b1f Mon Sep 17 00:00:00 2001 From: thzxx Date: Mon, 18 May 2026 13:51:04 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E9=A2=84=E8=A7=88=E5=8C=BA=E6=97=A0?= =?UTF-8?q?=E6=B3=95=E9=80=89=E6=8B=A9=E5=A4=8D=E5=88=B6=E5=86=85=E5=AE=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit body 全局 user-select: none 导致预览面板继承了不可选择属性, 给 #preview 添加 user-select: text 和 cursor: text 修复。 --- renderer/style.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/renderer/style.css b/renderer/style.css index ee61be8..5b4a36e 100644 --- a/renderer/style.css +++ b/renderer/style.css @@ -380,6 +380,8 @@ html, body { padding: 24px 32px; max-width: 900px; margin: 0 auto; + user-select: text; + cursor: text; } /* ===== Markdown Body Styles ===== */