From 8af4d27cd67157b4f53286913d886d8896f7010a Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Mon, 27 Jan 2014 13:17:49 -0600 Subject: Fix linebreak issues in preformatted code blocks In text blocks that have preformatted code, such as news items, we don't handle the overflow case very well. Let the browser do the job and wrap things if absolutely required. Fixes FS#35649. Signed-off-by: Dan McGee --- sitestatic/archweb.css | 1 + 1 file changed, 1 insertion(+) diff --git a/sitestatic/archweb.css b/sitestatic/archweb.css index b7d6e1e..53fa627 100644 --- a/sitestatic/archweb.css +++ b/sitestatic/archweb.css @@ -79,6 +79,7 @@ pre { pre code { display: block; background: none; + overflow: auto; } blockquote { -- cgit v1.2.3-24-g4f1b