style: 主题样式调整

This commit is contained in:
@changcode
2021-12-07 10:37:40 +08:00
parent d720198c2c
commit 2dc4591956
8 changed files with 23 additions and 9 deletions

View File

@@ -61,6 +61,9 @@
border-radius: 0 $--button-border-radius $--button-border-radius 0;
border-left: none;
}
.top-tool-btn {
background-color: $--button-icon-background-color;
}
}
.top-tool-btn {
height: 32px;
@@ -69,7 +72,7 @@
border: 1px solid $--button-icon-border-color;
outline: none;
border-radius: $--button-border-radius;
background-color: $--button-icon-background-color;
background-color: $--background-color-empty;
transition:all .2s;
color: $--button-icon-color;

View File

@@ -136,7 +136,7 @@
.panel-info-corner--error .panel-info-corner-inner {
border-left: 28px solid #e02f44;
border-right: none;
border-bottom: 28px solid $--background-color-empty;
border-bottom: 28px solid transparent;
}
.panel-info-corner-inner {
width: 0;
@@ -185,7 +185,7 @@
.panel-info-corner--error .panel-info-corner-inner {
border-left: 28px solid #e6a23c;
border-right: none;
border-bottom: 28px solid $--background-color-empty;
border-bottom: 28px solid transparent;
}
.panel-info-corner-inner {
width: 0;

View File

@@ -45,7 +45,8 @@
color: $--color-text-regular;
letter-spacing: 0;
font-weight: 400;
padding-left: 3px;
padding: 0 1px;
margin-right: 12px;
margin-bottom: 6px;
text-align: center;
}

View File

@@ -20,6 +20,11 @@
.el-table--border::after, .el-table--group::after, .el-table::before {
height: 0;
}
.introduce-view .page-header{
i {
color: $--color-text-regular;
}
}
}
.explore-collapse.el-collapse {

View File

@@ -122,6 +122,10 @@
padding-right: 10px;
color: $--color-text-regular;
}
.operation-length {
margin-top: 3px;
color: $--color-text-regular;
}
}
}
}

View File

@@ -35,6 +35,7 @@
}
}
.table-list-box {
height: 100%;
border-top: 1px solid $--background-color-base;
background-color: $--background-color-empty;
}

View File

@@ -129,7 +129,7 @@
id="asset-box-input-purchase-date"
v-model="label.value"
:type="JSON.parse(label.param).subType === assetConstants.labelSubTypeData.date ? 'dateRange' : 'datetimerange'"
placeholder=""
:placeholder="$t('overall.select')"
popper-class="right-box-select-top right-public-box-dropdown-top"
size="small"
style="width: 100%">
@@ -140,7 +140,7 @@
id="asset-box-input-parchase-date"
v-model="label.value"
:type="JSON.parse(label.param).subType"
placeholder=""
:placeholder="$t('overall.select')"
popper-class="right-box-select-top right-public-box-dropdown-top"
size="small"
style="width: 100%"
@@ -173,7 +173,7 @@
<!-- 第一级Edit type = state -->
<template v-if="editData.editType === assetConstants.editTypeData.state">
<el-form-item :label="$t('asset.state')" prop="stateId">
<el-select v-model="editData.stateId" class="right-box__select" popper-class="right-box-select-top prevent-clickoutside" size="small" value-key="id">
<el-select v-model="editData.stateId" class="right-box__select" :placeholder="$t('overall.select')" popper-class="right-box-select-top prevent-clickoutside" size="small" value-key="id">
<el-option v-for="state in stateData" :key="state.id" :label="state.name" :value="state.id"></el-option>
</el-select>
</el-form-item>
@@ -182,7 +182,7 @@
<!-- 第一级Edit type = snmp credential -->
<template v-if="editData.editType === assetConstants.editTypeData.snmpCredential">
<el-form-item :label="$t('asset.snmpCredential')" prop="snmpCredentialId">
<el-select v-model="editData.snmpCredentialId" class="right-box__select" popper-class="right-box-select-top prevent-clickoutside" size="small" value-key="id">
<el-select v-model="editData.snmpCredentialId" class="right-box__select" :placeholder="$t('overall.select')" popper-class="right-box-select-top prevent-clickoutside" size="small" value-key="id">
<el-option v-for="snmp in snmpCredentialData" :key="snmp.id" :label="snmp.name" :value="snmp.id"></el-option>
</el-select>
</el-form-item>

View File

@@ -32,7 +32,7 @@
</div>
<div class="log-operation">
<span class="operation-label">Result:</span>
<span>{{tableData.length}}</span>
<span class="operation-length">{{tableData.length}}</span>
</div>
<div class="log-operation log-operation--right">
<button class="top-tool-btn" type="button" @click="exportLog"><i class="nz-icon nz-icon-download"></i></button>