http://www.mediawiki.org/wiki/Special:Code/MediaWiki/88378

Revision: 88378
Author:   robin
Date:     2011-05-18 18:03:06 +0000 (Wed, 18 May 2011)
Log Message:
-----------
(bug 4330) External URLs should always be treated as LTR, also in RTL text (CSS 
fix thanks to Amir Aharoni)

Modified Paths:
--------------
    trunk/phase3/skins/modern/main.css
    trunk/phase3/skins/monobook/main.css
    trunk/phase3/skins/vector/screen.css

Modified: trunk/phase3/skins/modern/main.css
===================================================================
--- trunk/phase3/skins/modern/main.css  2011-05-18 17:58:38 UTC (rev 88377)
+++ trunk/phase3/skins/modern/main.css  2011-05-18 18:03:06 UTC (rev 88378)
@@ -644,9 +644,13 @@
 #mw_content a.external {
        color: #36b;
 }
+/* External URLs should always be treated as LTR (bug 4330) */
+div#content .rtl a.external {
+       direction: ltr;
+       unicode-bidi: embed;
+}
 
 
-
 .redirectText {
        font-size: 150%;
        margin: 5px;

Modified: trunk/phase3/skins/monobook/main.css
===================================================================
--- trunk/phase3/skins/monobook/main.css        2011-05-18 17:58:38 UTC (rev 
88377)
+++ trunk/phase3/skins/monobook/main.css        2011-05-18 18:03:06 UTC (rev 
88378)
@@ -576,6 +576,11 @@
 #bodyContent a.external:active {
        color: #b63;
 }
+/* External URLs should always be treated as LTR (bug 4330) */
+div#content .rtl a.external {
+       direction: ltr;
+       unicode-bidi: embed;
+}
 
 /*
 ** Structural Elements

Modified: trunk/phase3/skins/vector/screen.css
===================================================================
--- trunk/phase3/skins/vector/screen.css        2011-05-18 17:58:38 UTC (rev 
88377)
+++ trunk/phase3/skins/vector/screen.css        2011-05-18 18:03:06 UTC (rev 
88378)
@@ -1135,6 +1135,11 @@
 div#content a.external:active {
        color: #b63;
 }
+/* External URLs should always be treated as LTR (bug 4330) */
+div#content .rtl a.external {
+       direction: ltr;
+       unicode-bidi: embed;
+}
 
 
 div#content .printfooter {


_______________________________________________
MediaWiki-CVS mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-cvs

Reply via email to