From 318f02e62b10548b219929773666da89a8b72685 Mon Sep 17 00:00:00 2001 From: Stas Vilchik Date: Tue, 9 Jan 2018 10:29:35 +0100 Subject: [PATCH] SONAR-10169 Covered lines should be highlighted in grey on mouse-over --- .../src/main/js/components/SourceViewer/styles.css | 8 ++++++++ 1 file changed, 8 insertions(+) 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; } -- 2.39.5