summaryrefslogtreecommitdiff
path: root/web/src/index.css
diff options
context:
space:
mode:
authorFelix Edel <felix.edel@bmw.de>2020-09-10 08:12:14 +0200
committerFelix Edel <felix.edel@bmw.de>2020-09-16 08:02:27 +0200
commite1a7afa9530eb4c2187354f786c73c6907687212 (patch)
tree532ddb43db88570403cffdddb3dd46c6a85ac32d /web/src/index.css
parent91d56f87cfa2d1955a3a5b7e73e3a4c1b1b79242 (diff)
downloadzuul-e1a7afa9530eb4c2187354f786c73c6907687212.tar.gz
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
Diffstat (limited to 'web/src/index.css')
-rw-r--r--web/src/index.css2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/src/index.css b/web/src/index.css
index 8ebfc0a29..22185a920 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;
}