From 828f2e9368653b5abb04bdfe643ad398dfbffada Mon Sep 17 00:00:00 2001 From: Volker Theile Date: Mon, 10 Aug 2020 18:25:02 +0200 Subject: [PATCH] mgr/dashboard: correct color names which are not defined Fix regression introduced by https://github.com/ceph/ceph/pull/35954. Rename some color names that have been changed by the mentioned PR. Signed-off-by: Volker Theile --- .../navigation/notifications/notifications.component.scss | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/pybind/mgr/dashboard/frontend/src/app/core/navigation/notifications/notifications.component.scss b/src/pybind/mgr/dashboard/frontend/src/app/core/navigation/notifications/notifications.component.scss index 1379cfb600f..22ebd0ecf05 100644 --- a/src/pybind/mgr/dashboard/frontend/src/app/core/navigation/notifications/notifications.component.scss +++ b/src/pybind/mgr/dashboard/frontend/src/app/core/navigation/notifications/notifications.component.scss @@ -10,8 +10,8 @@ a { .dot { - background-color: bd.$color-primary; - border: 2px solid bd.$color-navbar-bg; + background-color: bd.$primary; + border: 2px solid bd.$secondary; border-radius: 50%; height: 11px; position: absolute; @@ -21,7 +21,7 @@ a { } &:hover .dot { - background-color: bd.$color-solid-white; - border-color: bd.$color-primary; + background-color: bd.$white; + border-color: bd.$primary; } } -- 2.39.5