From f17385e42abd2b5bdc04c9fcd32be9b323946133 Mon Sep 17 00:00:00 2001 From: glacambre Date: Sat, 17 Mar 2018 12:30:38 +0100 Subject: [PATCH] viewsource.css: Make bg white, fix bg not covering whole page --- src/static/viewsource.css | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/static/viewsource.css b/src/static/viewsource.css index d643ccb2..0d506a32 100644 --- a/src/static/viewsource.css +++ b/src/static/viewsource.css @@ -1,9 +1,11 @@ #TridactylViewsourceElement { position: absolute !important; + /* This is the z-index of hint.css and content.css -1 */ + z-index: 2147483646 !important; top: 0px !important; font-family: monospace !important; - background-color: #F0F0F2 !important; + background: white !important; white-space: pre !important; - width: 100% !important; + min-width: 100% !important; }