- 为 .user-content 和 .details 类添加边框半径变量 - 将 .regular.ember-view, .user-main, .reviewable, .admin-content 的背景色设置为带透明度的白色 - 为多个用户界面组件统一应用边框半径和背景模糊效果 - 调整 CSS 选择器顺序以优化样式覆盖逻辑
This commit is contained in:
+5
-1
@@ -44,7 +44,11 @@
|
||||
background-color: unset !important;
|
||||
}
|
||||
|
||||
.regular.ember-view, .user-main, .user-content, .details, .reviewable, .admin-content{
|
||||
.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);
|
||||
|
||||
Reference in New Issue
Block a user