style(css): 移除梦幻效果并优化主题样式
Discourse Theme / ci (push) Failing after 0s

- 删除了全局的梦幻光晕效果和相关动画
- 移除了话题卡片的渐变背景和发光效果
- 简化了列表容器的背景样式和阴影效果
- 调整了话题卡片悬停状态的视觉效果
- 优化了分类标签的颜色配置方式
- 更新了选中状态的边框颜色和透明度设置
This commit is contained in:
2026-02-21 10:03:46 +08:00
parent 1fb6a7b5a1
commit b83d1c4de9
3 changed files with 26 additions and 161 deletions
+8 -25
View File
@@ -11,7 +11,6 @@
.container.list-container{
position: relative;
isolation: isolate;
}
.container.list-container::before{
@@ -23,26 +22,14 @@
bottom: 0;
width: 100%;
height: 100%;
background:
linear-gradient(
180deg,
rgb(var(--secondary-rgb) / 0.46) 0%,
rgb(var(--secondary-rgb) / 0.34) 100%
);
background-color: #fff9;
border-radius: var(--d-border-radius);
backdrop-filter: blur(8px);
box-shadow: rgb(0 0 0 / 28%) 0 10px 26px -16px;
pointer-events: none;
z-index: 0;
}
.container.list-container > * {
position: relative;
z-index: 1;
backdrop-filter: blur(10px);
box-shadow: #00000077 0 0 19px 0;
}
.topic-list-header{
background-color: transparent;
background-color: unset;
}
.list-controls, .search-container{
border-radius: var(--d-border-radius);
@@ -54,17 +41,13 @@
}
#list-area{
background-color: transparent;
}
#main-outlet-wrapper{
z-index: 0;
background-color: unset !important;
}
.regular.ember-view{
background-color: rgb(var(--secondary-rgb) / 0.58);
background-color: #ffffffa8 !important;
border-radius: var(--d-border-radius);
backdrop-filter: blur(10px);
box-shadow: rgb(0 0 0 / 24%) 0 10px 24px -14px;
backdrop-filter: blur(16px);
box-shadow: #00000077 0 0 19px 0;
padding: 24px;
}