From 0da801a446c52b435e5172fcfc84442dbf869ce8 Mon Sep 17 00:00:00 2001 From: Ed Santiago Date: Mon, 16 Nov 2020 14:33:07 -0700 Subject: logformatter: highlight timing results Add a :hover style to rows in the 'integration timing results' section. Without that, it's really hard for my eye to scan across and match a time to a test name. Signed-off-by: Ed Santiago --- contrib/cirrus/logformatter | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/contrib/cirrus/logformatter b/contrib/cirrus/logformatter index 0cbd1f34b..bcafbc473 100755 --- a/contrib/cirrus/logformatter +++ b/contrib/cirrus/logformatter @@ -56,6 +56,7 @@ a.codelink:hover { background: #000; color: #999; } /* The timing tests at bottom: remove underline, it's too cluttery. */ a.timing { text-decoration: none; } +.timing:hover { background: #FF9; } /* highlight row for easy reading */ /* BATS styles */ .bats-passed { color: #393; } @@ -292,7 +293,7 @@ END_HTML $spaces = 1 if $spaces < 1; $spaces++ if $time < 10; my $spacing = ' ' x $spaces; - $line = qq{$name$spacing$time}; + $line = qq{$name$spacing$time}; } else { $in_timing = 0; -- cgit v1.2.3-54-g00ecf