forked from github/dataease
fix(系统设置): 全居的选中色也需要随主题变化,参数为 主色的10%不透明度
This commit is contained in:
parent
d879695dd2
commit
4edd44f669
@ -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) {
|
||||
|
@ -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) {
|
||||
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user