From da716058fa679db65a31be3090820fe98a2a296e Mon Sep 17 00:00:00 2001 From: PayBas Date: Mon, 2 Jun 2014 20:48:41 +0200 Subject: [PATCH] [ticket/10472] Fix ACP overflow:hidden problem for medium-sized screens PHPBB3-10472 --- phpBB/adm/style/admin.css | 25 +++++++++++++++++++++++-- 1 file changed, 23 insertions(+), 2 deletions(-) diff --git a/phpBB/adm/style/admin.css b/phpBB/adm/style/admin.css index b8f55e66c5..879b976c5e 100644 --- a/phpBB/adm/style/admin.css +++ b/phpBB/adm/style/admin.css @@ -182,6 +182,12 @@ li { margin-bottom: 10px; } +#page-header:after { + content: ''; + clear: both; + display: block; +} + .rtl #page-header { text-align: left; background: url("../images/phpbb_logo.png") top right no-repeat; @@ -203,10 +209,15 @@ li { } #page-body { - clear: both; min-width: 650px; } +#page-body:after { + content: ''; + clear: both; + display: block; +} + #page-footer { clear: both; } @@ -487,6 +498,12 @@ li { box-shadow: #FFF 0 0 0 1px inset; } +#acp:after { + content: ''; + clear: both; + display: block; +} + #acp:first-child { top: 0; } @@ -1132,6 +1149,10 @@ input.langvalue, textarea.langvalue { width: 90%; } +input[type="number"], dd input[type="number"] { + width: 60px; +} + optgroup, select { background-color: #FAFAFA; border: 1px solid #666666; @@ -1887,7 +1908,7 @@ li.pagination ul { visibility: hidden; }*/ -.clearfix, .row, #content, fieldset dl, #page-body { +.clearfix, .row, fieldset dl { overflow: hidden; }