aafa92430a
Discourse Theme / ci (push) Failing after 1s
- 为 regular.ember-view 添加 !important 修饰符以确保背景色优先级 - 移除 box-shadow 属性上的 !important 修饰符以优化样式继承 - 保持模糊效果和内边距设置不变
54 lines
984 B
SCSS
54 lines
984 B
SCSS
@use "lib/viewport";
|
|
|
|
#main-outlet {
|
|
@if $home_bg_image != "" {
|
|
background-image: url($home_bg_image);
|
|
background-size: cover;
|
|
background-position: center;
|
|
background-attachment: fixed;
|
|
}
|
|
}
|
|
|
|
.container.list-container{
|
|
position: relative;
|
|
}
|
|
|
|
.container.list-container::before{
|
|
position: absolute;
|
|
content: "";
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
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;
|
|
}
|
|
|
|
.regular.ember-view{
|
|
background-color: #ffffffa8 !important;
|
|
border-radius: var(--d-border-radius);
|
|
backdrop-filter: blur(16px);
|
|
box-shadow: #00000077 0 0 19px 0;
|
|
padding: 24px;
|
|
}
|