|
@@ -74,6 +74,38 @@ img{
|
|
|
background-color: transparent !important;
|
|
|
}
|
|
|
|
|
|
+.el-select .el-select__wrapper {
|
|
|
+ background-color: transparent !important;
|
|
|
+ border: 1px solid #2CFFFF;
|
|
|
+ color: #2CFFFF;
|
|
|
+}
|
|
|
+
|
|
|
+.el-select-dropdown {
|
|
|
+ background-color: #2A3248 !important;
|
|
|
+ border: 1px solid #2CFFFF;
|
|
|
+
|
|
|
+}
|
|
|
+
|
|
|
+/* 修改输入框文字颜色 */
|
|
|
+.el-select .el-input__inner {
|
|
|
+ color: #2CFFFF !important;
|
|
|
+}
|
|
|
+
|
|
|
+/* 修改下拉选项 */
|
|
|
+.el-select-dropdown__item {
|
|
|
+ background-color: #2A3248 !important;
|
|
|
+ color: #ffffff !important;
|
|
|
+
|
|
|
+ height: 40px !important;
|
|
|
+ line-height: 40px !important;
|
|
|
+ font-size: 12px !important;
|
|
|
+}
|
|
|
+
|
|
|
+/* 修改选中项文字颜色 */
|
|
|
+.el-select-dropdown__item.is-selected {
|
|
|
+ color: #2CFFFF !important;
|
|
|
+}
|
|
|
+
|
|
|
.custom-card-infoLog {
|
|
|
width: 100%;
|
|
|
height: 100%;
|
|
@@ -91,7 +123,7 @@ img{
|
|
|
border-bottom: none;
|
|
|
padding: 0 40px;
|
|
|
|
|
|
- height: 40px;
|
|
|
+ height: 30px;
|
|
|
background-image: url(@/assets/img/cardinfo-header.png);
|
|
|
background-size: 100% 100%;
|
|
|
background-repeat: no-repeat;
|
|
@@ -100,7 +132,7 @@ img{
|
|
|
|
|
|
.custom-card-infoLog .el-card__body {
|
|
|
width: 100%;
|
|
|
- height: calc(100% - 40px);
|
|
|
+ height: calc(100% - 30px);
|
|
|
padding: 5px 5px;
|
|
|
background: linear-gradient(to top, #173B77 0%, #132440 100%);
|
|
|
border-radius: 0px 0px 0px 0px;
|
|
@@ -128,7 +160,7 @@ img{
|
|
|
border-bottom: none;
|
|
|
padding: 0 35px;
|
|
|
|
|
|
- height: 40px;
|
|
|
+ height: 30px;
|
|
|
background-image: url(@/assets/img/card-header.png);
|
|
|
background-size: 100% 100%;
|
|
|
background-repeat: no-repeat;
|
|
@@ -138,7 +170,7 @@ img{
|
|
|
|
|
|
.custom-card .el-card__body {
|
|
|
width: 100%;
|
|
|
- height: calc(100% - 40px);
|
|
|
+ height: calc(100% - 30px);
|
|
|
padding: 5px 5px;
|
|
|
background-image: url(@/assets/img/card-body.png);
|
|
|
background-size: 100% 100%;
|
|
@@ -170,6 +202,7 @@ img{
|
|
|
|
|
|
.custom-card .content-container {
|
|
|
width: 100%;
|
|
|
+ height: 100%;
|
|
|
|
|
|
display: flex;
|
|
|
align-items: center;
|
|
@@ -177,13 +210,31 @@ img{
|
|
|
|
|
|
.content-aside {
|
|
|
width: 40%;
|
|
|
+ height: 100%;
|
|
|
+
|
|
|
+ .content-aside-rowtop {
|
|
|
+ height: 70%;
|
|
|
+ }
|
|
|
+ .content-aside-rowbottom {
|
|
|
+ height: 30%;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
.content-form {
|
|
|
width: 60%;
|
|
|
+ height: 100%;
|
|
|
+
|
|
|
+
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+.el-form-item__label {
|
|
|
+ font-weight: 400;
|
|
|
+ font-size: 12px;
|
|
|
+ color: #FFFFFF;
|
|
|
+}
|
|
|
+
|
|
|
+/* 自定义开关 */
|
|
|
.custom-switch {
|
|
|
transform: scale(0.5);
|
|
|
}
|