From 4df1200d52db4abf85f91b344b069de7e9cf8d52 Mon Sep 17 00:00:00 2001 From: thzxx <1440196015@qq.com> Date: Sun, 23 Aug 2026 12:24:05 +0800 Subject: [PATCH] =?UTF-8?q?fix(v0.1.12):=20=E6=A0=B9=E6=B2=BB=E5=BC=B9?= =?UTF-8?q?=E6=A1=86=E5=85=B3=E9=97=AD=E9=92=AE=E5=AE=9A=E4=BD=8D=E4=B8=8E?= =?UTF-8?q?=E5=BA=95=E9=83=A8=E7=8B=AC=E7=AB=8B=E5=AE=B9=E5=99=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 关闭钮:右定位至卷轴内侧右上角(top:14 right:16),重做为金墨印章风圆钮, hover 朱砂描边放大,与卷轴轴杆不再重叠——真正独立于内容 - modal 改 flex 柱 + overflow:hidden:滚动只归 modal-body(居中区), 底部 footer 成为固定脚托(深色分隔带 + 独立背景 + 与内容分区明显) - modal-title 预留右侧 44px 防关闭钮压标题 - footer 不再随内容滚动;全量 937 测试通过、build 通过 --- src/renderer/ui/styles.css | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/renderer/ui/styles.css b/src/renderer/ui/styles.css index 3d84113..10063e6 100644 --- a/src/renderer/ui/styles.css +++ b/src/renderer/ui/styles.css @@ -1078,9 +1078,11 @@ body { position: relative; width: 570px; max-height: 82vh; - overflow-y: auto; + display: flex; + flex-direction: column; + overflow: hidden; border-radius: 2px; - padding: 26px 30px 24px; + padding: 26px 30px 16px; background: url("data:image/svg+xml;utf8,"), linear-gradient(180deg, #f7efdd 0%, #ecdfc0 100%); @@ -1119,6 +1121,7 @@ body { margin-bottom: 5px; font-weight: 700; text-shadow: 0 1px 0 rgba(255, 250, 235, 0.8); + padding-right: 44px; } .modal-cat { text-align: center;