808d195332
Discourse Theme / ci (push) Failing after 0s
- 将 #list-area 选择器扩展为同时包含 .topic-list-header 类 - 移除背景颜色的强制设置以支持主题定制 - 保持现有的阴影效果和其他样式属性不变
58 lines
1.1 KiB
SCSS
58 lines
1.1 KiB
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, .search-container{
|
|
border-radius: var(--d-border-radius);
|
|
}
|
|
|
|
.welcome-banner {
|
|
padding: 0 !important;
|
|
box-shadow: #00000094 0 0 11px 0;
|
|
}
|
|
|
|
#list-area, .topic-list-header{
|
|
background-color: unset !important;
|
|
}
|
|
|
|
.user-content, .details{
|
|
border-radius: var(--d-border-radius);
|
|
}
|
|
|
|
.regular.ember-view, .user-main, .reviewable, .admin-content{
|
|
background-color: #ffffffa8 !important;
|
|
border-radius: var(--d-border-radius);
|
|
backdrop-filter: blur(16px);
|
|
box-shadow: #00000077 0 0 19px 0;
|
|
padding: 24px;
|
|
}
|