style(homepage): 更新背景和组件样式
Discourse Theme / ci (push) Failing after 1s

- 添加固定背景附件属性
- 为列表控件添加阴影效果
- 移除话题列表头部背景色
- 更新欢迎横幅内边距和阴影
- 为 ember155 元素添加背景、圆角、模糊滤镜和阴影
This commit is contained in:
2026-02-20 21:26:03 +08:00
parent 275945ce1a
commit ea810552db
+18
View File
@@ -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;
}