fix: 彻底消除滚动闪白 — 全面清除残留白色背景
All checks were successful
continuous-integration/drone/push Build is passing

- html 元素加 background-color: #0A0C16(防弹性滚动露白)
- common.css: nav-item-box、input-search、select-box 背景改深色
- theme.css: .box-shadow/.box-shadow-light 背景改深色
- 共修复 6 处白色背景残留
This commit is contained in:
yiqiu
2026-03-18 18:16:47 +08:00
parent fcd7eff3e8
commit 40a5364c17
3 changed files with 14 additions and 12 deletions

View File

@@ -42,13 +42,13 @@ input {
/* 盒子阴影 */
.box-shadow {
background: #FFFFFF;
box-shadow: 0px 0px 16px rgba(52, 52, 52, 0.16);
background: rgba(20, 28, 44, 0.8);
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}
.box-shadow-light {
background: #FFFFFF;
box-shadow: 0px 0px 8px rgba(52, 52, 52, 0.08);
background: rgba(20, 28, 44, 0.6);
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}