From: Rotem Liss Date: Wed, 9 Jul 2008 09:28:10 +0000 (+0000) Subject: Removing the ordered list workaround for Firefox in RTL: Firefox 3, released a few... X-Git-Tag: 1.31.0-rc.0~46612 X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/exercices/journal.php?a=commitdiff_plain;h=e1e8d0ada9990a13c875ff72c4babbb4764e1d46;p=lhc%2Fweb%2Fwiklou.git Removing the ordered list workaround for Firefox in RTL: Firefox 3, released a few weeks ago, fixes this issue. The workaround causes problems with the numbering in Firefox. I think that it is better to remove this workaround because of its problems. The unordered list workaround does not seem to cause problems; it should stay until most Firefox users upgrade to Firefox 3. --- diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index 2ccc048818..fbc0d54232 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -1353,7 +1353,7 @@ $wgCacheEpoch = '20030516000000'; * to ensure that client-side caches don't keep obsolete copies of global * styles. */ -$wgStyleVersion = '161'; +$wgStyleVersion = '162'; # Server-side caching: diff --git a/skins/common/common_rtl.css b/skins/common/common_rtl.css index d6629624ac..cda3835de4 100644 --- a/skins/common/common_rtl.css +++ b/skins/common/common_rtl.css @@ -45,6 +45,3 @@ table.filehistory th { html > body div#article ul { display: table; } -html > body div#article ol { - display: table; -} diff --git a/skins/modern/rtl.css b/skins/modern/rtl.css index 12e53754da..239bc8d496 100644 --- a/skins/modern/rtl.css +++ b/skins/modern/rtl.css @@ -141,9 +141,6 @@ table.filehistory th { html > body div#mw_contentholder ul { display: table; } -html > body div#mw_contentholder ol { - display: table; -} html > body div#mw_contentholder ul#filetoc { display: block; } diff --git a/skins/monobook/rtl.css b/skins/monobook/rtl.css index 10b12508eb..f00cf09fbe 100644 --- a/skins/monobook/rtl.css +++ b/skins/monobook/rtl.css @@ -227,9 +227,6 @@ table.filehistory th { html > body div#bodyContent ul { display: table; } -html > body div#bodyContent ol { - display: table; -} html > body div#bodyContent ul#filetoc { display: block; } diff --git a/skins/simple/rtl.css b/skins/simple/rtl.css index 300f02853d..c560caba89 100644 --- a/skins/simple/rtl.css +++ b/skins/simple/rtl.css @@ -173,6 +173,3 @@ table.filehistory th { html > body div#bodyContent ul { display: table; } -html > body div#bodyContent ol { - display: table; -}