From 53af1aec6ad711bb4421f240061d114b9c2ebd35 Mon Sep 17 00:00:00 2001 From: Tobias Henkel Date: Thu, 8 Mar 2018 07:32:22 +0100 Subject: [PATCH] Fix console stream colors With the latest zuul-web changes the console stream seems to inherit some properties which make the streamed text black on white. Set the according properties also on pre#zuulstreamcontent. Change-Id: Ic0cfd0dfaf743166b2533d3596aa00062ddb4537 --- web/styles/stream.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/web/styles/stream.css b/web/styles/stream.css index 28bf02ba17..dc03401678 100644 --- a/web/styles/stream.css +++ b/web/styles/stream.css @@ -15,4 +15,7 @@ body#zuulstream { pre#zuulstreamcontent { white-space: pre; margin: 0px 10px; + background-color: black; + color: lightgrey; + border: none; }