From: Francois Gouget Subject: [PATCH 2/2] testbot/web: Prettify the log / error separator. Message-Id: <06221d498cdc5d70b50e36813b176cabc1183eac.1529583802.git.fgouget@codeweavers.com> Date: Thu, 21 Jun 2018 14:23:58 +0200 (CEST) In-Reply-To: <5c4cc185034c5cbaf4e69dde7aab683d5f67ed00.1529583802.git.fgouget@codeweavers.com> References: <5c4cc185034c5cbaf4e69dde7aab683d5f67ed00.1529583802.git.fgouget@codeweavers.com> Signed-off-by: Francois Gouget --- testbot/web/JobDetails.pl | 7 ++++++- testbot/web/WineTestBot.css | 14 ++++++++++++++ 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/testbot/web/JobDetails.pl b/testbot/web/JobDetails.pl index 1536e87cd..8cc354e84 100644 --- a/testbot/web/JobDetails.pl +++ b/testbot/web/JobDetails.pl @@ -495,7 +495,12 @@ sub GenerateBody($) chomp $Line; if ($ErrFirst) { - print "
\n" if (!$LogFirst); + if (!$LogFirst) + { + print "
". + ($ErrName eq "err" ? "Other errors" : "Old errors") . + "
\n"; + } print "
";
           $ErrFirst = 0;
         }
diff --git a/testbot/web/WineTestBot.css b/testbot/web/WineTestBot.css
index 28ac1b1c2..593c38f44 100644
--- a/testbot/web/WineTestBot.css
+++ b/testbot/web/WineTestBot.css
@@ -317,6 +317,20 @@ h2
   padding-bottom: 0.1em;
 }
 
+.HrTitle {
+  margin-top: 0.5em;
+  display: flex;
+  align-items: center;
+  color: #a50d0d;
+}
+
+.HrLine {
+  border-top: 1px solid grey;
+  flex-grow: 1;
+  margin: 0 10px;
+  border-color: #a50d0d;
+}
+
 details
 {
   font-style: italic;

-- 
2.17.1