diff options
author | Louis7777 <louis7777@github.com> | 2017-05-03 04:00:33 +0300 |
---|---|---|
committer | Louis7777 <louis7777@github.com> | 2017-05-03 04:00:33 +0300 |
commit | 3e971bd1f8463e0e3d416b891458af55c24077b8 (patch) | |
tree | bed069c46ddbc0cf6cadacded092e4a0794535d7 /phpBB/styles/prosilver/theme | |
parent | 234a6f1256e9eb9feebd103ddfdf0956f75cffc6 (diff) | |
download | forums-3e971bd1f8463e0e3d416b891458af55c24077b8.tar forums-3e971bd1f8463e0e3d416b891458af55c24077b8.tar.gz forums-3e971bd1f8463e0e3d416b891458af55c24077b8.tar.bz2 forums-3e971bd1f8463e0e3d416b891458af55c24077b8.tar.xz forums-3e971bd1f8463e0e3d416b891458af55c24077b8.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
Diffstat (limited to 'phpBB/styles/prosilver/theme')
-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 78ecb23568..058f0178d1 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 5px 3px; + padding: 8px 3px; font: 0.9em Monaco, "Andale Mono","Courier New", Courier, monospace; line-height: 1.3em; } |