From 06fbeef71017ce18afedf23fe515df90c59c1573 Mon Sep 17 00:00:00 2001 From: Annabel Dunstone Gray Date: Tue, 9 Apr 2019 16:01:30 +0000 Subject: [PATCH] Merge branch '60249' into 'master' Fix SVG icon colors in Related MRs widget Closes #60249 See merge request gitlab-org/gitlab-ce!27151 (cherry picked from commit 5e2d16e8d83546d5ccc18b6566ec1adacac448c7) 5fe0fe77 Fix icon colors of related MRs widget --- .../stylesheets/components/related_items_list.scss | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/app/assets/stylesheets/components/related_items_list.scss b/app/assets/stylesheets/components/related_items_list.scss index 5a5601f2fa3..628dffc39f1 100644 --- a/app/assets/stylesheets/components/related_items_list.scss +++ b/app/assets/stylesheets/components/related_items_list.scss @@ -25,6 +25,18 @@ $item-weight-max-width: 48px; flex-grow: 1; } + .issue-token-state-icon-open { + color: $green-500; + } + + .issue-token-state-icon-closed { + color: $blue-500; + } + + .merge-request-status.closed { + color: $red-500; + } + .issue-token-state-icon-open, .issue-token-state-icon-closed, .confidential-icon, -- GitLab