From: Stas Vilchik Date: Tue, 9 Jan 2018 09:29:35 +0000 (+0100) Subject: SONAR-10169 Covered lines should be highlighted in grey on mouse-over X-Git-Tag: 7.0-RC1~42 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=318f02e62b10548b219929773666da89a8b72685;p=sonarqube.git SONAR-10169 Covered lines should be highlighted in grey on mouse-over --- diff --git a/server/sonar-web/src/main/js/components/SourceViewer/styles.css b/server/sonar-web/src/main/js/components/SourceViewer/styles.css index 6ff36f182ce..1387bb7333c 100644 --- a/server/sonar-web/src/main/js/components/SourceViewer/styles.css +++ b/server/sonar-web/src/main/js/components/SourceViewer/styles.css @@ -72,10 +72,18 @@ background-color: var(--leakColor) !important; } +.source-line-filtered:hover .source-line-code { + background-color: #f1e8cb !important; +} + .source-line-filtered.source-line-filtered-dark .source-line-code { background-color: #f9ebb7 !important; } +.source-line-filtered.source-line-filtered-dark:hover .source-line-code { + background-color: #eaddb2 !important; +} + .source-line-last .source-line-code { padding-bottom: 80px; }