邓洁 : 设备管理雏形

This commit is contained in:
邓洁
2023-12-16 16:33:54 +08:00
parent e8ac21d5be
commit a45afb9e6f
7 changed files with 141 additions and 41 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@@ -420,24 +420,20 @@ html, body, #app, .el-container, .el-aside, .el-main {
}
}
//el-select 下拉框样式
.dialog-dropdown{
}
.el-select__popper {
margin-top: -12px!important;
background: #072247!important;
border: 1px solid #0F82AF!important;
}
.el-popper {
max-width: 204px!important;
max-width: 202px!important;
box-sizing: border-box;
}
.el-popper__arrow::before{
display: none;
}
.el-select-dropdown{
width: 202px!important;
width: 200px!important;
}
.el-select-dropdown__item{
color: #fff!important;
@@ -460,3 +456,28 @@ html, body, #app, .el-container, .el-aside, .el-main {
}
}
}
//input number 右侧加减隐藏
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
}
input[type="number"] {
-moz-appearance: textfield;
}
//checkbox
.el-checkbox__inner {
width: 40px !important;
height: 40px !important;
border-radius: 25px!important;
}
.el-checkbox__input.is-checked .el-checkbox__inner {
width: 25px;
height: 25px;
background-color: #05FEFF!important;
}
.el-checkbox__input.is-checked .el-checkbox__inner::after {
display: none;
}