mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-10 05:18:52 +00:00
[ticket/16188] fix acp responsive stats
PHPBB3-16188
This commit is contained in:
parent
77da8b6507
commit
eb0195dd7c
1 changed files with 30 additions and 7 deletions
|
@ -728,13 +728,6 @@ td {
|
||||||
border-collapse: separate;
|
border-collapse: separate;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (min-width: 1100px), only screen and (min-device-width: 1100px) {
|
|
||||||
.lside .table1 {
|
|
||||||
display: inline-table;
|
|
||||||
width: 49.7%;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.tabled {
|
.tabled {
|
||||||
width: 25%;
|
width: 25%;
|
||||||
}
|
}
|
||||||
|
@ -1073,6 +1066,36 @@ table.fixed-width-table {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.lside {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
|
.lside .table1 {
|
||||||
|
display: table;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.lside .table1:first-child {
|
||||||
|
margin-right: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 1025px) {
|
||||||
|
.lside {
|
||||||
|
flex-direction: row;
|
||||||
|
}
|
||||||
|
|
||||||
|
.lside .table1 {
|
||||||
|
flex: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.lside .table1:first-child {
|
||||||
|
margin-bottom: 0;
|
||||||
|
margin-right: 20px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/* General form styles
|
/* General form styles
|
||||||
----------------------------------------*/
|
----------------------------------------*/
|
||||||
fieldset {
|
fieldset {
|
||||||
|
|
Loading…
Add table
Reference in a new issue