- 为话题列表头部添加 z-index 层级控制 - 调整话题列表头部间距和内边距 - 设置话题列表数据项颜色、字体大小和粗细 - 将话题列表数据项设为大写字母并添加背景透明效果 - 为默认话题列表项添加圆角边框 - 重新定位批量选择控件位置并更新样式 - 更新批量选择按钮的圆角样式 - 新增自定义背景图片和容器样式 - 为主题卡片渐变背景替换为线性渐变效果 - 调整主题卡片悬停状态下的背景色和阴影效果 - 为主题卡片添加左侧边框高亮效果 - 移除废弃的主题卡片相关样式代码
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
@use "lib/viewport";
|
||||
|
||||
#main-outlet {
|
||||
@if $home_bg_image != "" {
|
||||
background-image: url($home_bg_image);
|
||||
background-size: cover;
|
||||
background-position: center;
|
||||
}
|
||||
}
|
||||
|
||||
.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);
|
||||
}
|
||||
|
||||
.list-controls{
|
||||
border-radius: var(--d-border-radius);
|
||||
}
|
||||
|
||||
#list-area{
|
||||
background-color: unset !important;
|
||||
}
|
||||
Reference in New Issue
Block a user