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: v16.1.0~1462^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F36548%2Fhead;p=ceph.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 1379cfb600fcc..22ebd0ecf057e 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; } }