From: Trevor Parscal Date: Thu, 9 Jul 2009 17:08:30 +0000 (+0000) Subject: Fixed IE bug that caused some rendering problems with floated content because of... X-Git-Tag: 1.31.0-rc.0~41020 X-Git-Url: http://git.cyclocoop.org/%22.%24image2.%22?a=commitdiff_plain;h=5399ecefc18ff3cd58ec0e32d13e780ac6238101;p=lhc%2Fweb%2Fwiklou.git Fixed IE bug that caused some rendering problems with floated content because of the assumed width of bodyContent. --- diff --git a/skins/vector/main-ltr.css b/skins/vector/main-ltr.css index 445d5bc196..a47f182b47 100644 --- a/skins/vector/main-ltr.css +++ b/skins/vector/main-ltr.css @@ -892,5 +892,6 @@ span.newpage, span.minor, span.bot { div#bodyContent { position: relative; + width: 100%; } diff --git a/skins/vector/main-rtl.css b/skins/vector/main-rtl.css index 07b753485a..317e89174b 100644 --- a/skins/vector/main-rtl.css +++ b/skins/vector/main-rtl.css @@ -944,5 +944,6 @@ table.mw_metadata td { div#bodyContent { position: relative; + width: 100%; }