(bug 6016) Left-aligned images should stack vertically, like right-aligned images...
authorAryeh Gregor <simetrical@users.mediawiki.org>
Wed, 29 Nov 2006 02:43:04 +0000 (02:43 +0000)
committerAryeh Gregor <simetrical@users.mediawiki.org>
Wed, 29 Nov 2006 02:43:04 +0000 (02:43 +0000)
RELEASE-NOTES
includes/DefaultSettings.php
skins/chick/main.css
skins/common/common.css
skins/monobook/main.css
skins/simple/main.css

index 44fd749..7133e79 100644 (file)
@@ -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 ==
 
index cf0a568..0a28d7c 100644 (file)
@@ -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:
 
index b736722..30cd1f8 100644 (file)
@@ -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;
 }
index d7ec2df..497ea2a 100644 (file)
@@ -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;
 }
 
index 16496a3..ff037ee 100644 (file)
@@ -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;
 }
index abbb259..deda8be 100644 (file)
@@ -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;
 }