mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-01-31 14:08:06 +08:00
style: Optimize input to disable background color (#7308)
This commit is contained in:
parent
9ac9f76a1d
commit
6ad48250f8
@ -56,6 +56,7 @@ html {
|
|||||||
--panel-pie-bg-color: #ffffff;
|
--panel-pie-bg-color: #ffffff;
|
||||||
|
|
||||||
--el-fill-color-light: #ffffff;
|
--el-fill-color-light: #ffffff;
|
||||||
|
--el-disabled-bg-color: var(--panel-main-bg-color-9) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.el-notification {
|
.el-notification {
|
||||||
@ -241,6 +242,10 @@ html {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.el-input.is-disabled .el-input__wrapper {
|
||||||
|
--el-disabled-bg-color: var(--panel-main-bg-color-9);
|
||||||
|
}
|
||||||
|
|
||||||
.el-radio-button__inner {
|
.el-radio-button__inner {
|
||||||
[class*='el-icon'] + span {
|
[class*='el-icon'] + span {
|
||||||
margin-left: 6px;
|
margin-left: 6px;
|
||||||
@ -253,3 +258,8 @@ html {
|
|||||||
.logo {
|
.logo {
|
||||||
color: var(--el-color-primary);
|
color: var(--el-color-primary);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.custom-input-textarea {
|
||||||
|
background-color: #f5f7fa !important;
|
||||||
|
color: var(--el-color-info) !important;
|
||||||
|
}
|
||||||
|
@ -51,7 +51,7 @@
|
|||||||
v-model="form.mirrors"
|
v-model="form.mirrors"
|
||||||
class="sm:calc(100% - 80px)"
|
class="sm:calc(100% - 80px)"
|
||||||
/>
|
/>
|
||||||
<el-button @click="onChangeMirrors" icon="Setting">
|
<el-button @click="onChangeMirrors" icon="Setting" class="custom-input-textarea">
|
||||||
{{ $t('commons.button.set') }}
|
{{ $t('commons.button.set') }}
|
||||||
</el-button>
|
</el-button>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user