From cc0667f3b88ce8114d31a5b851010be37ba815ad Mon Sep 17 00:00:00 2001 From: =?utf8?q?Gr=C3=A9goire=20Aubert?= Date: Thu, 10 Oct 2019 16:14:14 +0200 Subject: [PATCH] SONAR-12540 More consistent colors for hover color of new uncovered lines --- .../main/js/components/SourceViewer/components/Line.css | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/server/sonar-web/src/main/js/components/SourceViewer/components/Line.css b/server/sonar-web/src/main/js/components/SourceViewer/components/Line.css index 6641874c03c..8052467813b 100644 --- a/server/sonar-web/src/main/js/components/SourceViewer/components/Line.css +++ b/server/sonar-web/src/main/js/components/SourceViewer/components/Line.css @@ -61,16 +61,13 @@ background-color: #cdd9c4 !important; } -.source-line-filtered:hover .source-line-code { - background-color: var(--leakSecondaryColor) !important; -} - .source-line-filtered.source-line-filtered-dark .source-line-code { background-color: #f9ebb7 !important; } +.source-line-filtered:hover .source-line-code, .source-line-filtered.source-line-filtered-dark:hover .source-line-code { - background-color: #eaddb2 !important; + background-color: var(--leakSecondaryColor) !important; } .source-line-last .source-line-code { -- 2.39.5