mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
[ticket/12553] Align the text in responsive tables to the right.
PHPBB3-12553
This commit is contained in:
parent
0f4c947a03
commit
e17b5796bf
1 changed files with 14 additions and 0 deletions
|
@ -911,3 +911,17 @@ ul.linklist li.small-icon > a, ul.linklist li.breadcrumbs span:first-child > a {
|
||||||
.rtl .attach-controls {
|
.rtl .attach-controls {
|
||||||
float: left;
|
float: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* responsive.css
|
||||||
|
*/
|
||||||
|
@media only screen and (max-width: 700px), only screen and (max-device-width: 700px)
|
||||||
|
{
|
||||||
|
.rtl table.responsive.show-header thead, .rtl table.responsive.show-header th:first-child {
|
||||||
|
text-align: right !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.rtl table.responsive td {
|
||||||
|
text-align: right !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue