From c0063a9e2e12c4e4e43b11408f0e1ae1bc4d7ef8 Mon Sep 17 00:00:00 2001 From: Cesar G Date: Thu, 29 May 2014 11:48:31 -0700 Subject: [PATCH] [ticket/12553] Fix incorrect alignment in ACP responsive tables. PHPBB3-12553 --- phpBB/adm/style/admin.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/phpBB/adm/style/admin.css b/phpBB/adm/style/admin.css index d646867780..0f22bc100d 100644 --- a/phpBB/adm/style/admin.css +++ b/phpBB/adm/style/admin.css @@ -987,6 +987,10 @@ table.fixed-width-table { margin-bottom: 1px; } + .rtl table.responsive td { + text-align: right !important; + } + table.responsive td.empty { display: none !important; } @@ -1007,6 +1011,10 @@ table.fixed-width-table { box-sizing: border-box; } + .rtl table.responsive.two-columns td { + float: right; + } + table.responsive.two-columns td:nth-child(2n+1) { clear: left; }