aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/styles
diff options
context:
space:
mode:
authorCesar G <prototech91@gmail.com>2014-05-29 19:22:58 -0700
committerCesar G <prototech91@gmail.com>2014-06-14 09:54:16 -0700
commite17b5796bf362399e984ecd11af66f651575210a (patch)
treef2e237df4cc9a68701af850d34cce493818c4800 /phpBB/styles
parent0f4c947a03aa52e069aa82564e6323f05b71ad3c (diff)
downloadforums-e17b5796bf362399e984ecd11af66f651575210a.tar
forums-e17b5796bf362399e984ecd11af66f651575210a.tar.gz
forums-e17b5796bf362399e984ecd11af66f651575210a.tar.bz2
forums-e17b5796bf362399e984ecd11af66f651575210a.tar.xz
forums-e17b5796bf362399e984ecd11af66f651575210a.zip
[ticket/12553] Align the text in responsive tables to the right.
PHPBB3-12553
Diffstat (limited to 'phpBB/styles')
-rw-r--r--phpBB/styles/prosilver/theme/bidi.css14
1 files changed, 14 insertions, 0 deletions
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;
+ }
+}