style: 全部样式更新2.0

This commit is contained in:
chenchun
2025-08-05 14:09:39 +08:00
parent 09a2f91cbf
commit e73678c788
15 changed files with 135 additions and 91 deletions

View File

@@ -44,11 +44,12 @@
<div class="item item-bottom">
<div class="tag-list">
<el-tag v-if="discuss.permissionRoleCodes.length>0" v-for="item in discuss.permissionRoleCodes" effect="dark" type="danger" :key="item">{{item}}</el-tag>
<el-tag class="tag-list-item" v-if="discuss.permissionRoleCodes.length>0" v-for="item in discuss.permissionRoleCodes" effect="dark" type="danger" :key="item">{{item}}</el-tag>
<el-tag v-if="discuss.title!=''&& discuss.lables.length===0">暂无标签</el-tag>
<el-tag class="tag-list-item" v-if="discuss.title!=''&& discuss.lables.length===0">暂无标签</el-tag>
<el-tag v-if="discuss.lables.length>0" v-for="item in discuss.lables" :key="item.id">{{item.name}}</el-tag>
<el-tag class="tag-list-item" v-if="discuss.lables.length>0" v-for="item in discuss.lables" :key="item.id">{{item.name}}</el-tag>
</div>
<el-space :size="10" :spacer="spacer">
<div class="item-description">
@@ -250,4 +251,10 @@ onMounted(() => {
opacity: 1; /* 鼠标悬浮时完全显示 */
}
}
.tag-list-item{
border: 0px;
color: #BCBCBC;
background: none;
}
</style>

View File

@@ -144,5 +144,28 @@ const change=(value,render)=>{
width: 100%;
}
.edit ::v-deep(.auto-textarea-input){
/* background: none !important; */
background: #1D1E1F !important;
color: #fff !important;
}
.edit ::v-deep(.content-input-wrapper)
{
background: #1D1E1F !important;
color: #fff !important;
}
.edit ::v-deep(.v-note-edit)
{
background: #1D1E1F !important;
color: #fff !important;
}
.edit ::v-deep(.v-note-op){
background: #1D1E1F !important;
color: #fff !important;
}
.edit ::v-deep(.v-show-content){
background: #1D1E1F !important;
color: #fff !important;
}
</style>