From e635d33169b136bf3671b2badb626d32658b6163 Mon Sep 17 00:00:00 2001 From: Frode Petterson Date: Thu, 24 Oct 2019 16:29:22 +0200 Subject: [PATCH] HFP-2860 Fix BG color + overflow --- styles/h5p.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/styles/h5p.css b/styles/h5p.css index bb6de8a..7b8dbfe 100644 --- a/styles/h5p.css +++ b/styles/h5p.css @@ -551,11 +551,15 @@ div.h5p-fullscreen { } .h5p-content pre > code, .h5peditor pre > code { + background-color: #d1d1d1; padding: 5px; display: block; line-height: normal; border: 1px solid #c7c7c7; border-left-width: 4px; + max-width: 100%; + white-space: nowrap; + overflow: auto; }