Merge pull request #5497 from hanakin/ticket/15927

[ticket/15927] Fix acp style tables width issue
This commit is contained in:
Marc Alexander 2019-01-06 21:06:20 +01:00 committed by GitHub
commit b8cc0c77a2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 9 deletions

View file

@ -95,7 +95,7 @@
<!-- 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>

View file

@ -750,14 +750,16 @@ td {
} }
.table1 { .table1 {
display: inline-block; clear: both;
border-spacing: 1px; border-spacing: 1px;
border-collapse: separate; border-collapse: separate;
} }
.lside { @media only screen and (min-width: 1100px), only screen and (min-device-width: 1100px) {
display: inline-block; .lside .table1 {
width: 40%; display: inline-table;
width: 49.7%;
}
} }
.tabled { .tabled {