aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCesar G <prototech91@gmail.com>2014-05-29 11:48:31 -0700
committerCesar G <prototech91@gmail.com>2014-06-14 09:54:16 -0700
commitc0063a9e2e12c4e4e43b11408f0e1ae1bc4d7ef8 (patch)
treef55e930dcbcf114c037c6aa3dd09cb754190a952
parent73c2a3f1776f9adbcae603918a411035f745a51f (diff)
downloadforums-c0063a9e2e12c4e4e43b11408f0e1ae1bc4d7ef8.tar
forums-c0063a9e2e12c4e4e43b11408f0e1ae1bc4d7ef8.tar.gz
forums-c0063a9e2e12c4e4e43b11408f0e1ae1bc4d7ef8.tar.bz2
forums-c0063a9e2e12c4e4e43b11408f0e1ae1bc4d7ef8.tar.xz
forums-c0063a9e2e12c4e4e43b11408f0e1ae1bc4d7ef8.zip
[ticket/12553] Fix incorrect alignment in ACP responsive tables.
PHPBB3-12553
-rw-r--r--phpBB/adm/style/admin.css8
1 files changed, 8 insertions, 0 deletions
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;
}