(bug 29263) Add LTR class to the shared CSS to be used for left-to-right text such...
authorHuji <huji@users.mediawiki.org>
Fri, 3 Jun 2011 16:15:07 +0000 (16:15 +0000)
committerHuji <huji@users.mediawiki.org>
Fri, 3 Jun 2011 16:15:07 +0000 (16:15 +0000)
RELEASE-NOTES-1.18
skins/common/shared.css

index c171865..4bb8a93 100644 (file)
@@ -251,6 +251,9 @@ production.
 * (bug 22227) Special:Listfiles no longer throws an error on bogus file entries
 * (bug 19408) user_properties.up_property: 32 bytes is not enough.
 * (bug 25262) Fix for minification of hardcoded data: URIs in CSS
+* (bug 29263) Add LTR class to the shared CSS to be used for left-to-right text
+  such as SQL queries shown in dberrortext and similar messages in RTL
+  environments
 
 === API changes in 1.18 ===
 * (bug 26339) Throw warning when truncating an overlarge API result.
index b08f29b..ecd68a3 100644 (file)
@@ -715,3 +715,16 @@ th.headerSortDown {
        /* @noflip */
        direction: ltr;
 }
+
+/* LTR content in RTL layout, e.g. SQL queries inside DB error messages */
+div.ltr {
+       /* @noflip */
+       direction: ltr;
+}
+
+div.ltr {
+       /* @noflip */
+       direction: ltr;
+       unicode-bidi: embed;RE  
+}
+