1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-03-23 00:50:30 +01:00

[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
This commit is contained in:
Louis7777 2017-05-03 04:04:27 +03:00
parent 3e971bd1f8
commit cc40d64e24

View File

@ -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;
}