Merge branch 'dev' into trp_dev

This commit is contained in:
trp
2023-12-16 17:29:58 +08:00
7 changed files with 181 additions and 34 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@@ -422,3 +422,66 @@ body,
}
}
}
//el-select 下拉框样式
.el-select__popper {
margin-top: -12px!important;
background: #072247!important;
border: 1px solid #0F82AF!important;
}
.el-popper {
max-width: 202px!important;
box-sizing: border-box;
}
.el-popper__arrow::before{
display: none;
}
.el-select-dropdown{
width: 200px!important;
}
.el-select-dropdown__item{
color: #fff!important;
}
.el-select-dropdown__item.hover{
background-color: #072247!important;
}
.el-select-dropdown__item:hover {
background-color: #072247!important;
color: #08B7B8!important;
}
.el-select-dropdown__item.selected {
color: #08B7B8!important;
}
.el-select-dropdown__list{
.el-select-dropdown__item:first-child{
color: #FFFFFF;
&:hover{
color: #08B7B8!important;
}
}
}
//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;
}