mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
[ticket/10472] Fix ACP overflow:hidden problem for medium-sized screens
PHPBB3-10472
This commit is contained in:
parent
9ef01e7f82
commit
da716058fa
1 changed files with 23 additions and 2 deletions
|
@ -182,6 +182,12 @@ li {
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#page-header:after {
|
||||||
|
content: '';
|
||||||
|
clear: both;
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
.rtl #page-header {
|
.rtl #page-header {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
background: url("../images/phpbb_logo.png") top right no-repeat;
|
background: url("../images/phpbb_logo.png") top right no-repeat;
|
||||||
|
@ -203,10 +209,15 @@ li {
|
||||||
}
|
}
|
||||||
|
|
||||||
#page-body {
|
#page-body {
|
||||||
clear: both;
|
|
||||||
min-width: 650px;
|
min-width: 650px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#page-body:after {
|
||||||
|
content: '';
|
||||||
|
clear: both;
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
#page-footer {
|
#page-footer {
|
||||||
clear: both;
|
clear: both;
|
||||||
}
|
}
|
||||||
|
@ -487,6 +498,12 @@ li {
|
||||||
box-shadow: #FFF 0 0 0 1px inset;
|
box-shadow: #FFF 0 0 0 1px inset;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#acp:after {
|
||||||
|
content: '';
|
||||||
|
clear: both;
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
#acp:first-child {
|
#acp:first-child {
|
||||||
top: 0;
|
top: 0;
|
||||||
}
|
}
|
||||||
|
@ -1132,6 +1149,10 @@ input.langvalue, textarea.langvalue {
|
||||||
width: 90%;
|
width: 90%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
input[type="number"], dd input[type="number"] {
|
||||||
|
width: 60px;
|
||||||
|
}
|
||||||
|
|
||||||
optgroup, select {
|
optgroup, select {
|
||||||
background-color: #FAFAFA;
|
background-color: #FAFAFA;
|
||||||
border: 1px solid #666666;
|
border: 1px solid #666666;
|
||||||
|
@ -1887,7 +1908,7 @@ li.pagination ul {
|
||||||
visibility: hidden;
|
visibility: hidden;
|
||||||
}*/
|
}*/
|
||||||
|
|
||||||
.clearfix, .row, #content, fieldset dl, #page-body {
|
.clearfix, .row, fieldset dl {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue