[ticket/12553] Fix incorrect alignment in ACP responsive tables.

PHPBB3-12553
This commit is contained in:
Cesar G 2014-05-29 11:48:31 -07:00
parent 73c2a3f177
commit c0063a9e2e

View file

@ -987,6 +987,10 @@ table.fixed-width-table {
margin-bottom: 1px; margin-bottom: 1px;
} }
.rtl table.responsive td {
text-align: right !important;
}
table.responsive td.empty { table.responsive td.empty {
display: none !important; display: none !important;
} }
@ -1007,6 +1011,10 @@ table.fixed-width-table {
box-sizing: border-box; box-sizing: border-box;
} }
.rtl table.responsive.two-columns td {
float: right;
}
table.responsive.two-columns td:nth-child(2n+1) { table.responsive.two-columns td:nth-child(2n+1) {
clear: left; clear: left;
} }