style: Administration tab列表更多Select下拉样式调整

This commit is contained in:
@changcode
2023-01-16 17:19:30 +08:00
parent 156979e79e
commit 05677d5fb6
2 changed files with 14 additions and 6 deletions

View File

@@ -11,7 +11,9 @@
z-index: 999999; z-index: 999999;
box-shadow: 0 0 10px #CCC; box-shadow: 0 0 10px #CCC;
box-sizing: border-box; box-sizing: border-box;
.pop-title {
margin: 10px 0;
}
.el-button--mini{ .el-button--mini{
padding: 5px 7px; padding: 5px 7px;
} }
@@ -23,7 +25,6 @@
top: 33px; top: 33px;
} }
.custom-labels { .custom-labels {
margin-top: 12px;
width: 100%; width: 100%;
height: 300px; height: 300px;
} }
@@ -41,8 +42,7 @@
font-size: 14px; font-size: 14px;
} }
.custom-label:hover{ .custom-label:hover{
color: #cccccc; background-color: rgba(220, 223, 230, .5)
background-color: #DCDFE6;
} }
.custom-title{ .custom-title{
padding: 2px 0 2px 2px; padding: 2px 0 2px 2px;
@@ -57,6 +57,14 @@
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
align-items: center; align-items: center;
.custom-bottom-btns-right {
.el-button:nth-of-type(1) {
margin-right: 3px;
}
.el-button .top-tool-btn-save {
color: #fff;
}
}
} }
.unshow { .unshow {
display: none; display: none;

View File

@@ -25,12 +25,12 @@
<el-button size="mini" v-if="!isCancel" :id="tableId+'-element-set-all'" class="cn-btn cn-btn-size-small-new cn-btn-style-light-new" type="button" @click="batchHandler(true)"> <el-button size="mini" v-if="!isCancel" :id="tableId+'-element-set-all'" class="cn-btn cn-btn-size-small-new cn-btn-style-light-new" type="button" @click="batchHandler(true)">
<span class="top-tool-btn-txt">{{$t('overall.all')}}</span> <span class="top-tool-btn-txt">{{$t('overall.all')}}</span>
</el-button> </el-button>
<div> <div class="custom-bottom-btns-right">
<el-button size="mini" :id="tableId+'-element-set-esc'" class="cn-btn cn-btn-size-small-new cn-btn-style-light-new" type="button" @click="esc"> <el-button size="mini" :id="tableId+'-element-set-esc'" class="cn-btn cn-btn-size-small-new cn-btn-style-light-new" type="button" @click="esc">
<span class="top-tool-btn-txt">{{$t('overall.cancel')}}</span> <span class="top-tool-btn-txt">{{$t('overall.cancel')}}</span>
</el-button> </el-button>
<el-button size="mini" :id="tableId+'-element-set-save'" class="cn-btn cn-btn-size-small-new cn-btn-style-normal-new" type="button" @click="save" style="background-color: #0091ff;color:#DCDFE6"> <el-button size="mini" :id="tableId+'-element-set-save'" class="cn-btn cn-btn-size-small-new cn-btn-style-normal-new" type="button" @click="save" style="background-color: #0091ff;color:#DCDFE6">
<span class="top-tool-btn-txt">{{$t('overall.save')}}</span> <span class="top-tool-btn-txt top-tool-btn-save">{{$t('overall.save')}}</span>
</el-button> </el-button>
</div> </div>
</div> </div>