* (bug 9854, 3770) Clip overflow text in gallery boxes for visual cleanliness
authorBrion Vibber <brion@users.mediawiki.org>
Wed, 9 May 2007 15:32:58 +0000 (15:32 +0000)
committerBrion Vibber <brion@users.mediawiki.org>
Wed, 9 May 2007 15:32:58 +0000 (15:32 +0000)
  instead of letting it flow outside the box or trigger ugly scroll bars.
Nikerabbit missed some skins and relnotes

RELEASE-NOTES
skins/chick/main.css
skins/common/common.css
skins/monobook/handheld.css

index 2b11115..fd12211 100644 (file)
@@ -42,6 +42,8 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN
   through transwiki, so we can take advantage of cURL goodies if available
 * Disable custom user javascript in Special:Preferences, to avoid the risk
   of a compromised script sniffing passwords etc.
+* (bug 9854, 3770) Clip overflow text in gallery boxes for visual cleanliness
+  instead of letting it flow outside the box or trigger ugly scroll bars.
 
 == Maintenance script changes since 1.10 ==
 
index 26d4f92..93a5f5f 100644 (file)
@@ -475,6 +475,7 @@ div.gallerybox div.thumb {
 }       
 
 div.gallerytext {
+       overflow: hidden;
         font-size: 94%;
         padding: 2px 4px;
 }       
index f607552..967a74e 100644 (file)
@@ -303,6 +303,7 @@ div.gallerybox div.thumb {
 }
 
 div.gallerytext {
+       overflow: hidden;
         font-size: 94%;
         padding: 2px 4px;
 }
index 7d14d4b..d3ef7b6 100644 (file)
@@ -1032,6 +1032,7 @@ div.gallerybox div.thumb {
 }
 
 div.gallerytext {
+       overflow: hidden;
        font-size: 94%;
        padding: 2px 4px;
 }