1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

Fix bugs #55485 and #55545 - styles adjustment to correctly display an order of rtl/ltr mixed content.

Authorised by: bantu

git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10456 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Ruslan Uzdenov
2010-01-26 14:11:00 +00:00
parent 283ad368eb
commit 5df687f820
4 changed files with 20 additions and 0 deletions

View File

@@ -225,6 +225,12 @@
text-align: left;
}
/* Links adjustment to correctly display an order of rtl/ltr mixed content */
.rtl a {
direction: rtl;
unicode-bidi: embed;
}
.rtl a.top {
float: left;
}

View File

@@ -1,6 +1,12 @@
/* proSilver Link Styles
---------------------------------------- */
/* Links adjustment to correctly display an order of rtl/ltr mixed content */
a {
direction: ltr;
unicode-bidi: embed;
}
a:link { color: #898989; text-decoration: none; }
a:visited { color: #898989; text-decoration: none; }
a:hover { color: #d3d3d3; text-decoration: underline; }