(bug 10438) HTML TeX formulas should not wrap, according to standard TeX behavior.
authorAryeh Gregor <simetrical@users.mediawiki.org>
Mon, 2 Jul 2007 16:19:25 +0000 (16:19 +0000)
committerAryeh Gregor <simetrical@users.mediawiki.org>
Mon, 2 Jul 2007 16:19:25 +0000 (16:19 +0000)
RELEASE-NOTES
skins/common/shared.css

index b520f8b..e0a4ba4 100644 (file)
@@ -119,6 +119,7 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN
 * Add 'editsection-brackets' message to allow localization (or removal) of the
   brackets in the "[edit]" link for sections.
 * (bug 10437) Move texvc styling to shared.css.
+* (bug 10438) HTML TeX formulas should not wrap.
 
 == Bugfixes since 1.10 ==
 
index b8f5775..4a4a86f 100644 (file)
@@ -7,7 +7,10 @@
 
 .texvc { direction: ltr; unicode-bidi: embed; }
 img.tex { vertical-align: middle; }
-span.texhtml { font-family: serif; }
+span.texhtml {
+       font-family: serif;
+       white-space: nowrap;
+}
 
 /* Stop floats from intruding into edit area in previews */
 #toolbar, #wpTextbox1 { clear: both; }