From e17b5796bf362399e984ecd11af66f651575210a Mon Sep 17 00:00:00 2001 From: Cesar G Date: Thu, 29 May 2014 19:22:58 -0700 Subject: [PATCH] [ticket/12553] Align the text in responsive tables to the right. PHPBB3-12553 --- phpBB/styles/prosilver/theme/bidi.css | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/phpBB/styles/prosilver/theme/bidi.css b/phpBB/styles/prosilver/theme/bidi.css index 7bf0cca037..ff1ded3964 100644 --- a/phpBB/styles/prosilver/theme/bidi.css +++ b/phpBB/styles/prosilver/theme/bidi.css @@ -911,3 +911,17 @@ ul.linklist li.small-icon > a, ul.linklist li.breadcrumbs span:first-child > a { .rtl .attach-controls { 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; + } +}