mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-08 04:18:52 +00:00
[ticket/15927] Fix render issue
PHPBB3-15927
This commit is contained in:
parent
31ab3d93a2
commit
8f0643a14c
2 changed files with 13 additions and 9 deletions
|
@ -93,9 +93,9 @@
|
||||||
<!-- ENDIF -->
|
<!-- ENDIF -->
|
||||||
|
|
||||||
<!-- EVENT acp_main_notice_after -->
|
<!-- EVENT acp_main_notice_after -->
|
||||||
|
|
||||||
<div class="lside">
|
<div class="lside">
|
||||||
<table class="table1 zebra-table no-header " data-no-responsive-header="true">
|
<table class="table1 zebra-table no-header" data-no-responsive-header="true">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>{L_STATISTIC}</th>
|
<th>{L_STATISTIC}</th>
|
||||||
|
@ -141,9 +141,7 @@
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
<table class="table1 zebra-table no-header" data-no-responsive-header="true">
|
||||||
<div class="lside" >
|
|
||||||
<table class="table1 zebra-table no-header" data-no-responsive-header="true" >
|
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>{L_STATISTIC}</th>
|
<th>{L_STATISTIC}</th>
|
||||||
|
|
|
@ -723,14 +723,20 @@ td {
|
||||||
}
|
}
|
||||||
|
|
||||||
.table1 {
|
.table1 {
|
||||||
display: inline-block;
|
clear: both;
|
||||||
border-spacing: 1px;
|
border-spacing: 1px;
|
||||||
border-collapse: separate;
|
border-collapse: separate;
|
||||||
}
|
}
|
||||||
|
|
||||||
.lside {
|
.lside .table1 {
|
||||||
display: inline-block;
|
float: left;
|
||||||
width: 40%;
|
clear: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (min-width: 1100px), only screen and (min-device-width: 1100px) {
|
||||||
|
.lside .table1 {
|
||||||
|
width: 50%;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.tabled {
|
.tabled {
|
||||||
|
|
Loading…
Add table
Reference in a new issue