You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
128 lines
2.2 KiB
128 lines
2.2 KiB
1 year ago
|
.theme-jihe {
|
||
|
$textColor: #F4F4F4;
|
||
|
$inputHeight: 26px;
|
||
|
color: $textColor;
|
||
|
|
||
|
.dialog-content {
|
||
|
.el-tabs__item {
|
||
|
color: $textColor;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.el-form-item {
|
||
|
margin-bottom: 14px;
|
||
|
}
|
||
|
|
||
|
.el-form-item__label {
|
||
|
line-height: 32px;
|
||
|
height: $inputHeight;
|
||
|
overflow: hidden;
|
||
|
color: #3DE8FF;
|
||
|
}
|
||
|
|
||
|
.el-form-item__content {
|
||
|
color: $textColor;
|
||
|
height: $inputHeight;
|
||
|
}
|
||
|
|
||
|
.el-input {
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
.el-input__inner {
|
||
|
padding: 0 8px;
|
||
|
background-color: #0D5F79;
|
||
|
color: $textColor;
|
||
|
border-radius: 2px;
|
||
|
line-height: $inputHeight;
|
||
|
height: $inputHeight;
|
||
|
font-size: 15px;
|
||
|
border: 0;
|
||
|
|
||
|
&::placeholder {
|
||
|
color: $textColor;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.el-checkbox-group {
|
||
|
.el-checkbox__label {
|
||
|
color: $textColor;
|
||
|
}
|
||
|
|
||
|
.el-checkbox {
|
||
|
.el-checkbox__inner {
|
||
|
width: 20px;
|
||
|
height: 20px;
|
||
|
border: 1px solid #00B3CC;
|
||
|
background-color: #0D5F79;
|
||
|
}
|
||
|
|
||
|
::after {
|
||
|
width: 6px;
|
||
|
height: 10px;
|
||
|
border-width: 2px;
|
||
|
left: 5px;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.el-checkbox.is-checked {
|
||
|
.el-checkbox__inner {
|
||
|
border: 1px solid #00B3CC;
|
||
|
background-color: #00B3CC;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.el-input-number {
|
||
|
margin-right: 10px;
|
||
|
height: $inputHeight;
|
||
|
line-height: $inputHeight;
|
||
|
padding: 0;
|
||
|
width: 100%;
|
||
|
|
||
|
.el-input-number__decrease,
|
||
|
.el-input-number__increase {
|
||
|
width: 22px;
|
||
|
height: $inputHeight;
|
||
|
background-color: #004A69;
|
||
|
border: none;
|
||
|
color: #FFF;
|
||
|
|
||
|
&.is-disabled {
|
||
|
color: #006A99;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.el-input {
|
||
|
margin: 0;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.el-radio-button {
|
||
|
margin-right: 10px;
|
||
|
|
||
|
.el-radio-button__inner {
|
||
|
background-color: #0D5F79;
|
||
|
border: 1px solid #00B3CC;
|
||
|
color: $textColor;
|
||
|
height: 26px;
|
||
|
padding: 0 10px;
|
||
|
line-height: 24px;
|
||
|
border-radius: 2px;
|
||
|
font-weight: 400;
|
||
|
box-shadow: none;
|
||
|
transition: none;
|
||
|
}
|
||
|
|
||
|
&.is-active {
|
||
|
|
||
|
.el-radio-button__inner {
|
||
|
background-image: linear-gradient(180deg, #37E7FF 0%, #009BCC 100%);
|
||
|
color: $textColor;
|
||
|
border: none;
|
||
|
height: 26px;
|
||
|
padding: 0 11px;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|