From e1a7afa9530eb4c2187354f786c73c6907687212 Mon Sep 17 00:00:00 2001 From: Felix Edel Date: Thu, 10 Sep 2020 08:12:14 +0200 Subject: [PATCH] UI: Enable horizontal scrolling on LogFile page PF4 broke the horizontal scrolling behaviour of the pre/table combination used on this page. This restores it by setting the overflow attribute on the pre element. Change-Id: I038942d235fd13cae90ed82429558f441f1dcbb4 --- web/src/index.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/index.css b/web/src/index.css index 8ebfc0a296..22185a9209 100644 --- a/web/src/index.css +++ b/web/src/index.css @@ -306,7 +306,7 @@ pre.version { } pre.zuul-log-output { - overflow: inherit; + overflow-x: auto; background-color: inherit; border: none; }