From 7d3dd6e2a66ee92a543ef24e6fd9648e8e1d53a2 Mon Sep 17 00:00:00 2001 From: nanhaoluo <3075912108@qq.com> Date: Fri, 23 Jan 2026 12:52:50 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E9=95=BF=E6=96=87?= =?UTF-8?q?=E7=AB=A0=E4=B8=8B=E6=96=87=E7=AB=A0=E8=83=8C=E6=99=AF=E7=9A=84?= =?UTF-8?q?=E6=AF=9B=E7=8E=BB=E7=92=83=E6=95=88=E6=9E=9C=E5=A4=B1=E6=95=88?= =?UTF-8?q?=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将 article.post.card 的 overflow 从 hidden 改为 visible - overflow: hidden 会创建新的层叠上下文,阻止 backdrop-filter 正常工作 - 修复后长文章的毛玻璃背景效果可以正常显示 --- style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/style.css b/style.css index 54a4731..7a5ca1d 100644 --- a/style.css +++ b/style.css @@ -13691,7 +13691,7 @@ html.darkmode { /* M3 文章卡片 */ article.post.card { - overflow: hidden; + overflow: visible; border: none !important; }