From: Aryeh Gregor Date: Wed, 29 Nov 2006 02:43:04 +0000 (+0000) Subject: (bug 6016) Left-aligned images should stack vertically, like right-aligned images... X-Git-Tag: 1.31.0-rc.0~55047 X-Git-Url: https://git.cyclocoop.org/%242?a=commitdiff_plain;h=4da62fe8584b6057c2863c7b4596df77d964ddd7;p=lhc%2Fweb%2Fwiklou.git (bug 6016) Left-aligned images should stack vertically, like right-aligned images, not horizontally. --- diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 44fd74975e..7133e79a41 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -224,6 +224,8 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN This is triggered by including &undo=revid in an edit URL. A link to a URL that will undo a given edit is shown on NEW NON-CURRENT revision headers on diff pages. * Fix display of link in "already rolled back" message for image/category pages +* (bug 6016) Left-aligned images should stack vertically, like right-aligned + images, not horizontally. == Languages updated == diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index cf0a568bd9..0a28d7c860 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -1048,7 +1048,7 @@ $wgCacheEpoch = '20030516000000'; * to ensure that client-side caches don't keep obsolete copies of global * styles. */ -$wgStyleVersion = '29'; +$wgStyleVersion = '30'; # Server-side caching: diff --git a/skins/chick/main.css b/skins/chick/main.css index b736722b9a..30cd1f84b0 100644 --- a/skins/chick/main.css +++ b/skins/chick/main.css @@ -270,6 +270,7 @@ div.floatright, table.floatright { div.floatright p { font-style: italic; } div.floatleft, table.floatleft { float: left; + clear: left; margin: 0.3em 0.5em 0.5em 0; position: relative; border: 0.5em solid White; @@ -316,6 +317,7 @@ div.tright { } div.tleft { float: left; + clear: left; margin-right:0.5em; border-width: 0.5em 1.4em 0.8em 0; } diff --git a/skins/common/common.css b/skins/common/common.css index d7ec2dffcc..497ea2ae92 100644 --- a/skins/common/common.css +++ b/skins/common/common.css @@ -31,7 +31,7 @@ h6 .editsection { font-size: 133% } /* images */ div.floatright { float: right; clear: right; margin: 0 0 1em 1em; } div.floatright p { font-style: italic; } -div.floatleft { float: left; margin: 0.3em 0.5em 0.5em 0; } +div.floatleft { float: left; clear: left; margin: 0.3em 0.5em 0.5em 0; } div.floatleft p { font-style: italic; } @@ -88,6 +88,7 @@ div.tright { } div.tleft { float: left; + clear: left; margin-right:0.5em; } diff --git a/skins/monobook/main.css b/skins/monobook/main.css index 16496a34f2..ff037ee255 100644 --- a/skins/monobook/main.css +++ b/skins/monobook/main.css @@ -412,6 +412,7 @@ div.floatright, table.floatright { div.floatright p { font-style: italic; } div.floatleft, table.floatleft { float: left; + clear: left; position: relative; margin: 0 .5em .5em 0; border: 0; @@ -463,6 +464,7 @@ div.tright { } div.tleft { float: left; + clear: left; margin-right: .5em; border-width: .5em 1.4em .8em 0; } diff --git a/skins/simple/main.css b/skins/simple/main.css index abbb259659..deda8be25b 100644 --- a/skins/simple/main.css +++ b/skins/simple/main.css @@ -302,6 +302,7 @@ div.floatright, table.floatright { div.floatright p { font-style: italic; } div.floatleft, table.floatleft { float: left; + clear: left; margin: 0.3em 0.5em 0.5em 0; position: relative; border-width: 0.5em 1.4em 0.8em 0; @@ -341,6 +342,7 @@ div.tright { } div.tleft { float: left; + clear: left; margin-right:0.5em; border-width: 0.5em 1.4em 0.8em 0; }