From: Aryeh Gregor Date: Mon, 2 Jul 2007 16:19:25 +0000 (+0000) Subject: (bug 10438) HTML TeX formulas should not wrap, according to standard TeX behavior. X-Git-Tag: 1.31.0-rc.0~52285 X-Git-Url: http://git.cyclocoop.org/%7B%24admin_url%7Dmes_infos.php?a=commitdiff_plain;h=fcf18b50278de6353f13dc71bae9ead04515c19a;p=lhc%2Fweb%2Fwiklou.git (bug 10438) HTML TeX formulas should not wrap, according to standard TeX behavior. --- diff --git a/RELEASE-NOTES b/RELEASE-NOTES index b520f8bfe4..e0a4ba4633 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -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 == diff --git a/skins/common/shared.css b/skins/common/shared.css index b8f5775d8a..4a4a86f859 100644 --- a/skins/common/shared.css +++ b/skins/common/shared.css @@ -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; }