diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-11-17 03:42:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-17 03:42:50 +0100 |
commit | 3502860e1cfe1042aca7a8de8446360662a5a2fd (patch) | |
tree | 46c28ad8538c9cad767d95577d65e18ad44eea16 | |
parent | e59394973a7559feb42b89ea882f2ce52d0432b8 (diff) | |
parent | 0da801a446c52b435e5172fcfc84442dbf869ce8 (diff) | |
download | podman-3502860e1cfe1042aca7a8de8446360662a5a2fd.tar.gz podman-3502860e1cfe1042aca7a8de8446360662a5a2fd.tar.bz2 podman-3502860e1cfe1042aca7a8de8446360662a5a2fd.zip |
Merge pull request #8360 from edsantiago/logformatter
logformatter: highlight timing results
-rwxr-xr-x | contrib/cirrus/logformatter | 3 |
1 files changed, 2 insertions, 1 deletions
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{<a class="timing" href="#t--$id">$name</a>$spacing$time}; + $line = qq{<span class="timing"><a href="#t--$id">$name</a>$spacing$time</span>}; } else { $in_timing = 0; |