[ticket/10472] Fix ACP overflow:hidden problem for medium-sized screens

PHPBB3-10472
This commit is contained in:
PayBas 2014-06-02 20:48:41 +02:00
parent 9ef01e7f82
commit da716058fa

View file

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