From 46c0c18ec741a2d23a6b45cab5beec43059d4a1e Mon Sep 17 00:00:00 2001 From: songjianet <1778651752@qq.com> Date: Thu, 14 Apr 2022 22:12:14 +0800 Subject: [PATCH] [Feature][UI Next][V1.0.0-Beta] Change the css style usage of the blue number flopper in the alarm center to css variables. (#9511) --- .../src/views/monitor/servers/db/index.module.scss | 2 +- .../src/views/monitor/servers/master/index.module.scss | 7 ++++--- .../src/views/monitor/servers/worker/index.module.scss | 7 ++++--- .../views/monitor/statistics/statistics/index.module.scss | 2 +- 4 files changed, 10 insertions(+), 8 deletions(-) diff --git a/dolphinscheduler-ui-next/src/views/monitor/servers/db/index.module.scss b/dolphinscheduler-ui-next/src/views/monitor/servers/db/index.module.scss index 7a70954347..3d8f0da6a3 100644 --- a/dolphinscheduler-ui-next/src/views/monitor/servers/db/index.module.scss +++ b/dolphinscheduler-ui-next/src/views/monitor/servers/db/index.module.scss @@ -37,5 +37,5 @@ .connections { @include base; - color: dodgerblue; + color: var(--n-color-target); } diff --git a/dolphinscheduler-ui-next/src/views/monitor/servers/master/index.module.scss b/dolphinscheduler-ui-next/src/views/monitor/servers/master/index.module.scss index 0347c5467e..1021e82349 100644 --- a/dolphinscheduler-ui-next/src/views/monitor/servers/master/index.module.scss +++ b/dolphinscheduler-ui-next/src/views/monitor/servers/master/index.module.scss @@ -29,14 +29,15 @@ .load-average { @include base; - color: dodgerblue; + color: var(--n-color-target); } .link-btn { - color: #579cd8; + color: var(--n-color-target); cursor: pointer; &:hover { - color: #80bef7; + color: var(--n-color-target); + opacity: 0.8; } } diff --git a/dolphinscheduler-ui-next/src/views/monitor/servers/worker/index.module.scss b/dolphinscheduler-ui-next/src/views/monitor/servers/worker/index.module.scss index c7cfae9198..f0a52382ee 100644 --- a/dolphinscheduler-ui-next/src/views/monitor/servers/worker/index.module.scss +++ b/dolphinscheduler-ui-next/src/views/monitor/servers/worker/index.module.scss @@ -29,14 +29,15 @@ .load-average { @include base; - color: dodgerblue; + color: var(--n-color-target); } .link-btn { - color: #579cd8; + color: var(--n-color-target); cursor: pointer; &:hover { - color: #80bef7; + color: var(--n-color-target); + opacity: 0.8; } } diff --git a/dolphinscheduler-ui-next/src/views/monitor/statistics/statistics/index.module.scss b/dolphinscheduler-ui-next/src/views/monitor/statistics/statistics/index.module.scss index 23230dffbf..e546167b3c 100644 --- a/dolphinscheduler-ui-next/src/views/monitor/statistics/statistics/index.module.scss +++ b/dolphinscheduler-ui-next/src/views/monitor/statistics/statistics/index.module.scss @@ -21,5 +21,5 @@ justify-content: center; align-items: center; min-height: 160px; - color: dodgerblue; + color: var(--n-color-target); }