1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-04 15:57:45 +02:00

[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;
}
.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;
}