diff options
author | Louis7777 <louis7777@github.com> | 2017-05-03 04:04:27 +0300 |
---|---|---|
committer | Louis7777 <louis7777@github.com> | 2017-05-03 04:04:27 +0300 |
commit | cc40d64e2488d2a33ced9ca3e3201b37e3041aaa (patch) | |
tree | a2191497f172948437fff93ad135678da7db531c | |
parent | 3e971bd1f8463e0e3d416b891458af55c24077b8 (diff) | |
download | forums-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.css | 2 |
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; } |