From: Volker Theile Date: Mon, 10 Aug 2020 16:25:02 +0000 (+0200) Subject: mgr/dashboard: correct color names which are not defined X-Git-Tag: wip-pdonnell-testing-20200918.022351~399^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=828f2e9368653b5abb04bdfe643ad398dfbffada;p=ceph-ci.git 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 --- 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; } }