1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-03-23 09:00:48 +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:00:33 +03:00
parent 234a6f1256
commit 3e971bd1f8

View File

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