From 8959911992ccbadce7a67fe21ec411768e118191 Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Fri, 12 Jun 2009 11:56:56 +0000 Subject: [PATCH] Fix bug #45765 - Correctly hide skiplink in prosilver right-to-left mode (thanks prototech). Authorised by: acydburn git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9572 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/docs/CHANGELOG.html | 1 + phpBB/styles/prosilver/theme/bidi.css | 20 ++++++++++++++++++++ 2 files changed, 21 insertions(+) diff --git a/phpBB/docs/CHANGELOG.html b/phpBB/docs/CHANGELOG.html index b2678f64ae..c8bff5a177 100644 --- a/phpBB/docs/CHANGELOG.html +++ b/phpBB/docs/CHANGELOG.html @@ -99,6 +99,7 @@
  • [Fix] Adjust viewonline filename regular expression to be less strict. (Bug #46215 - Patch by bantu)
  • [Fix] Correctly apply the can change vote permission again. Regression introduced in r9470. (Bug #45895)
  • [Fix] Also remove data from friend/foe table when deleting user. (Bug #45345 - Patch by nickvergessen)
  • +
  • [Fix] Correctly hide skiplink in prosilver right-to-left mode. (Bug #45765 - Patch by prototech and bantu)
  • [Change] Change the data format of the default file ACM to be more secure from tampering and have better performance.
  • [Change] Add index on log_time to the log table to prevent slowdown on boards with many log entries. (Bug #44665 - Patch by bantu)
  • [Change] Template engine now permits to a limited extent variable includes.
  • diff --git a/phpBB/styles/prosilver/theme/bidi.css b/phpBB/styles/prosilver/theme/bidi.css index 561bba0717..18cb5fe558 100644 --- a/phpBB/styles/prosilver/theme/bidi.css +++ b/phpBB/styles/prosilver/theme/bidi.css @@ -234,9 +234,29 @@ padding-right: 15px; } +.rtl .skiplink { + /* invisible skip link, used for accessibility */ + position: relative; + width: 1px; + height: 1px; + overflow: hidden; + display: block; + left: 0; +} + /** * content.css */ +.rtl ul.topiclist dfn { + /* Labels for post/view counts */ + position: relative; + width: 1px; + height: 1px; + overflow: hidden; + display: block; + left: 0; +} + .rtl ul.topiclist dt { float: right; }