fix(系统设置): 全居的选中色也需要随主题变化,参数为 主色的10%不透明度

This commit is contained in:
dataeaseShu 2024-08-23 16:00:43 +08:00
parent d879695dd2
commit 4edd44f669
3 changed files with 4 additions and 4 deletions

View File

@ -835,7 +835,7 @@ defineExpose({
}
:deep(.ed-tree--highlight-current .ed-tree-node.is-current > .ed-tree-node__content) {
background-color: rgba(51, 112, 255, 0.1) !important;
background: var(--ed-color-primary-1a, rgba(51, 112, 255, 0.1)) !important;
}
.tree-content ::deep(.ed-input__inner) {

View File

@ -621,7 +621,7 @@ defineExpose({
}
:deep(.ed-tree--highlight-current .ed-tree-node.is-current > .ed-tree-node__content) {
background-color: rgba(51, 112, 255, 0.1) !important;
background-color: var(--ed-color-primary-1a, rgba(51, 112, 255, 0.1)) !important;
}
.tree-content ::deep(.ed-input__inner) {

View File

@ -396,8 +396,8 @@ onMounted(() => {
align-items: center;
justify-content: center;
&:hover {
background-color: rgba(51, 112, 255, 0.1);
color: var(--primary);
background-color: var(--ed-color-primary-1a, rgba(51, 112, 255, 0.1));
color: var(--ed-color-primary);
cursor: pointer;
}
}