From ea810552dbf3eac89a7c273766468a826d5e3790 Mon Sep 17 00:00:00 2001 From: shiran <2488252513@qq.com> Date: Fri, 20 Feb 2026 21:26:03 +0800 Subject: [PATCH] =?UTF-8?q?style(homepage):=20=E6=9B=B4=E6=96=B0=E8=83=8C?= =?UTF-8?q?=E6=99=AF=E5=92=8C=E7=BB=84=E4=BB=B6=E6=A0=B7=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 添加固定背景附件属性 - 为列表控件添加阴影效果 - 移除话题列表头部背景色 - 更新欢迎横幅内边距和阴影 - 为 ember155 元素添加背景、圆角、模糊滤镜和阴影 --- scss/self.scss | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/scss/self.scss b/scss/self.scss index ef37800..a18f651 100644 --- a/scss/self.scss +++ b/scss/self.scss @@ -5,6 +5,7 @@ background-image: url($home_bg_image); background-size: cover; background-position: center; + background-attachment: fixed; } } @@ -24,12 +25,29 @@ background-color: #fff9; border-radius: var(--d-border-radius); backdrop-filter: blur(10px); + box-shadow: #00000077 0 0 19px 0; } +.topic-list-header{ + background-color: unset; +} .list-controls{ border-radius: var(--d-border-radius); } +.welcome-banner { + padding: 0 !important; + box-shadow: #00000094 0 0 11px 0; +} + #list-area{ background-color: unset !important; } + +#ember155{ + background-color: #ffffffa8; + border-radius: var(--d-border-radius); + backdrop-filter: blur(16px); + box-shadow: #00000077 0 0 19px 0; + padding: 24px; +}