From 4edd44f669cd52b67a1514eae98fe33b8be16d05 Mon Sep 17 00:00:00 2001 From: dataeaseShu Date: Fri, 23 Aug 2024 16:00:43 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E7=B3=BB=E7=BB=9F=E8=AE=BE=E7=BD=AE):=20?= =?UTF-8?q?=E5=85=A8=E5=B1=85=E7=9A=84=E9=80=89=E4=B8=AD=E8=89=B2=E4=B9=9F?= =?UTF-8?q?=E9=9C=80=E8=A6=81=E9=9A=8F=E4=B8=BB=E9=A2=98=E5=8F=98=E5=8C=96?= =?UTF-8?q?=EF=BC=8C=E5=8F=82=E6=95=B0=E4=B8=BA=20=E4=B8=BB=E8=89=B2?= =?UTF-8?q?=E7=9A=8410%=E4=B8=8D=E9=80=8F=E6=98=8E=E5=BA=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/components/visualization/OuterParamsSet.vue | 2 +- .../src/components/visualization/OuterParamsSetDS.vue | 2 +- core/core-frontend/src/views/share/share/ShareTicket.vue | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/core/core-frontend/src/components/visualization/OuterParamsSet.vue b/core/core-frontend/src/components/visualization/OuterParamsSet.vue index e425c5a98b..4bc31f12e2 100644 --- a/core/core-frontend/src/components/visualization/OuterParamsSet.vue +++ b/core/core-frontend/src/components/visualization/OuterParamsSet.vue @@ -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) { diff --git a/core/core-frontend/src/components/visualization/OuterParamsSetDS.vue b/core/core-frontend/src/components/visualization/OuterParamsSetDS.vue index 2298b24eb7..e85425a549 100644 --- a/core/core-frontend/src/components/visualization/OuterParamsSetDS.vue +++ b/core/core-frontend/src/components/visualization/OuterParamsSetDS.vue @@ -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) { diff --git a/core/core-frontend/src/views/share/share/ShareTicket.vue b/core/core-frontend/src/views/share/share/ShareTicket.vue index 1af395a653..9d2d97abc6 100644 --- a/core/core-frontend/src/views/share/share/ShareTicket.vue +++ b/core/core-frontend/src/views/share/share/ShareTicket.vue @@ -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; } }