From d14b1b3906770928a44f50eb296b43e4e8866263 Mon Sep 17 00:00:00 2001 From: hanakin Date: Fri, 4 Jan 2019 18:17:26 -0500 Subject: [PATCH 1/2] [ticket/15927] Fix render issue PHPBB3-15927 --- phpBB/adm/style/acp_main.html | 8 +++----- phpBB/adm/style/admin.css | 14 ++++++++++---- 2 files changed, 13 insertions(+), 9 deletions(-) diff --git a/phpBB/adm/style/acp_main.html b/phpBB/adm/style/acp_main.html index 261c41a2e7..ce55d81375 100644 --- a/phpBB/adm/style/acp_main.html +++ b/phpBB/adm/style/acp_main.html @@ -93,9 +93,9 @@ - +
- +
@@ -141,9 +141,7 @@
{L_STATISTIC}
-
-
- +
diff --git a/phpBB/adm/style/admin.css b/phpBB/adm/style/admin.css index 3934401ba3..4de134adae 100644 --- a/phpBB/adm/style/admin.css +++ b/phpBB/adm/style/admin.css @@ -750,14 +750,20 @@ td { } .table1 { - display: inline-block; + clear: both; border-spacing: 1px; border-collapse: separate; } -.lside { - display: inline-block; - width: 40%; +.lside .table1 { + float: left; + clear: none; +} + +@media only screen and (min-width: 1100px), only screen and (min-device-width: 1100px) { + .lside .table1 { + width: 50%; + } } .tabled { From 1c4f1fb711d9d5b0311b3815b53730ba18c4ce79 Mon Sep 17 00:00:00 2001 From: hanakin Date: Sat, 5 Jan 2019 12:54:55 -0500 Subject: [PATCH 2/2] [ticket/15927] Avoid using floats PHPBB3-15927 --- phpBB/adm/style/admin.css | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/phpBB/adm/style/admin.css b/phpBB/adm/style/admin.css index 4de134adae..ff30641b05 100644 --- a/phpBB/adm/style/admin.css +++ b/phpBB/adm/style/admin.css @@ -755,14 +755,10 @@ td { border-collapse: separate; } -.lside .table1 { - float: left; - clear: none; -} - @media only screen and (min-width: 1100px), only screen and (min-device-width: 1100px) { .lside .table1 { - width: 50%; + display: inline-table; + width: 49.7%; } }
{L_STATISTIC}