From 8987cfe35eae7571fba5994e32fb9309b6ed04d2 Mon Sep 17 00:00:00 2001 From: Denys Mishunov <dmishunov@gitlab.com> Date: Mon, 31 May 2021 15:48:10 +0200 Subject: [PATCH] Fixed the badge color on active item As per review --- .../contextual_sidebar_variant.scss | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/assets/stylesheets/framework/contextual_sidebar_refactoring/contextual_sidebar_variant.scss b/app/assets/stylesheets/framework/contextual_sidebar_refactoring/contextual_sidebar_variant.scss index 9247cccdf41d..58438df82956 100644 --- a/app/assets/stylesheets/framework/contextual_sidebar_refactoring/contextual_sidebar_variant.scss +++ b/app/assets/stylesheets/framework/contextual_sidebar_refactoring/contextual_sidebar_variant.scss @@ -285,8 +285,10 @@ .sidebar-sub-level-items:not(.is-fly-out-only) { display: block; } + .badge.badge-pill { - @include gl-font-weight-normal; + @include gl-font-weight-normal; // TODO: update in `theme_indigo.scss` + color: $blue-700; // TODO: update in `theme_indigo.scss` } } } -- GitLab