From 6bfaef04e7fd957439e95fa6fd2b9d8ca36fa873 Mon Sep 17 00:00:00 2001 From: coolzr Date: Fri, 24 Oct 2025 14:17:36 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E7=AB=99=E7=82=B9?= =?UTF-8?q?=E5=8D=A1=E7=89=87=E7=9A=84=E6=82=AC=E6=B5=AE=E6=95=88=E6=9E=9C?= =?UTF-8?q?=E8=A2=ABcategory=E9=81=AE=E4=BD=8F=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- assets/style.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/assets/style.css b/assets/style.css index 6464246..f582df6 100644 --- a/assets/style.css +++ b/assets/style.css @@ -990,7 +990,7 @@ body .content.expanded { /* 展开/折叠动画 */ .category-content, .group-content { - overflow: hidden; + overflow: visible; transition: max-height 0.3s ease, opacity 0.3s ease; max-height: 9999px; opacity: 1; @@ -998,6 +998,7 @@ body .content.expanded { .category.collapsed .category-content, .group.collapsed .group-content { + overflow: hidden; max-height: 0; opacity: 0; }