From cc40d64e2488d2a33ced9ca3e3201b37e3041aaa Mon Sep 17 00:00:00 2001 From: Louis7777 Date: Wed, 3 May 2017 04:04:27 +0300 Subject: [PATCH] [ticket/15212] Fix code box double horizontal scrollbars The code box has two overflow properties set, one on the code element and one on the parent div container, causing double horizontal scrollbars. PHPBB3-15212 --- phpBB/styles/prosilver/theme/content.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/styles/prosilver/theme/content.css b/phpBB/styles/prosilver/theme/content.css index 058f0178d1..c6914e8541 100644 --- a/phpBB/styles/prosilver/theme/content.css +++ b/phpBB/styles/prosilver/theme/content.css @@ -516,7 +516,7 @@ blockquote .codebox { display: block; height: auto; max-height: 200px; - padding: 8px 3px; + padding: 5px 3px; font: 0.9em Monaco, "Andale Mono","Courier New", Courier, monospace; line-height: 1.3em; }