1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 05:50:42 +02:00

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
This commit is contained in:
Andreas Fischer
2009-06-12 11:56:56 +00:00
parent b04d55f6e7
commit 8959911992
2 changed files with 21 additions and 0 deletions

View File

@@ -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;
}