aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLouis7777 <louis7777@github.com>2017-05-03 04:04:27 +0300
committerLouis7777 <louis7777@github.com>2017-05-03 04:04:27 +0300
commitcc40d64e2488d2a33ced9ca3e3201b37e3041aaa (patch)
treea2191497f172948437fff93ad135678da7db531c
parent3e971bd1f8463e0e3d416b891458af55c24077b8 (diff)
downloadforums-cc40d64e2488d2a33ced9ca3e3201b37e3041aaa.tar
forums-cc40d64e2488d2a33ced9ca3e3201b37e3041aaa.tar.gz
forums-cc40d64e2488d2a33ced9ca3e3201b37e3041aaa.tar.bz2
forums-cc40d64e2488d2a33ced9ca3e3201b37e3041aaa.tar.xz
forums-cc40d64e2488d2a33ced9ca3e3201b37e3041aaa.zip
[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
-rw-r--r--phpBB/styles/prosilver/theme/content.css2
1 files changed, 1 insertions, 1 deletions
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;
}