From 60daa43fb9462215e3ed0c0f320745aaa307bd2f Mon Sep 17 00:00:00 2001 From: nanhaoluo <3075912108@qq.com> Date: Mon, 12 Jan 2026 19:09:38 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E6=B5=AE=E5=8A=A8?= =?UTF-8?q?=E6=8C=89=E9=92=AE=E5=9C=86=E8=A7=92=E4=B8=8D=E8=B7=9F=E9=9A=8F?= =?UTF-8?q?=E5=85=A8=E5=B1=80=E8=AE=BE=E7=BD=AE=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 增加更高优先级的 CSS 选择器覆盖 Bootstrap 默认样式 - 为 .fabtn.btn、.fabtn.btn-icon、.fabtn.btn-neutral 等添加选择器 - 确保 border-radius 使用 var(--card-radius) 变量 - 同步更新左右切换按钮的圆角设置 --- style.css | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/style.css b/style.css index b8e54e6..269bae6 100644 --- a/style.css +++ b/style.css @@ -3159,7 +3159,11 @@ html.is-home.banner-as-cover #float_action_buttons.hidden { } /* 基础按钮样式 - 重置所有 Bootstrap 样式 */ -#float_action_buttons .fabtn { +#float_action_buttons .fabtn, +#float_action_buttons .fabtn.btn, +#float_action_buttons .fabtn.btn-icon, +#float_action_buttons .fabtn.btn-neutral, +#float_action_buttons button.fabtn { width: 44px !important; height: 44px !important; min-width: 44px !important; @@ -3242,13 +3246,15 @@ html.is-home.banner-as-cover #float_action_buttons.hidden { } /* 左右切换按钮 - 尺寸较小 */ -#float_action_buttons #fabtn_toggle_sides { +#float_action_buttons #fabtn_toggle_sides, +#float_action_buttons #fabtn_toggle_sides.btn { width: 32px !important; height: 32px !important; min-width: 32px !important; min-height: 32px !important; max-width: 32px !important; max-height: 32px !important; + border-radius: var(--card-radius) !important; opacity: 0.6; font-size: 11px; }