perf: change color

This commit is contained in:
ibuler
2024-05-07 18:58:06 +08:00
parent df0e7ee6ae
commit 1e21a5fb05
4 changed files with 4 additions and 5 deletions

View File

@@ -237,7 +237,6 @@ export default {
// 不符合校验规则的提示信息 // 不符合校验规则的提示信息
.el-form-item__error { .el-form-item__error {
position: inherit; position: inherit;
color: var(--el-form-tip-text-color);
} }
.el-select { .el-select {

View File

@@ -246,11 +246,11 @@ export default {
.organization { .organization {
border-radius: 3px; border-radius: 3px;
background-color: rgba(0, 0, 0, .12); background-color: rgba(255, 255, 255, .15);
padding-left: 10px !important; padding-left: 10px !important;
&:hover { &:hover {
background-color: rgba(0, 0, 0, .18); background-color: rgba(0, 0, 0, .12);
} }
} }
</style> </style>

View File

@@ -106,7 +106,7 @@ export default {
.go-back { .go-back {
border: none; border: none;
padding: 6px; padding: 4px;
} }
.go-back >>> i { .go-back >>> i {

View File

@@ -2,7 +2,7 @@ const commonColor = {
'--el-text-color': '#1F2329', '--el-text-color': '#1F2329',
'--el-icon-color': '#646A73', '--el-icon-color': '#646A73',
'--el-input-border-color': '#BBBFC4', '--el-input-border-color': '#BBBFC4',
'--el-disabled-background-color': '#EFF0F1', '--el-disabled-background-color': '#dcdee2',
'--el-form-tip-text-color': '#8F959E' '--el-form-tip-text-color': '#8F959E'
} }