vendor/frameworks/twitter/bootstrap/thumbnails.less in less-rails-bootstrap-2.0.10 vs vendor/frameworks/twitter/bootstrap/thumbnails.less in less-rails-bootstrap-2.0.11
- old
+ new
@@ -1,17 +1,25 @@
// THUMBNAILS
// ----------
+// Make wrapper ul behave like the grid
.thumbnails {
margin-left: -@gridGutterWidth;
list-style: none;
.clearfix();
}
+// Fluid rows have no left margin
+.row-fluid .thumbnails {
+ margin-left: 0;
+}
+
+// Float li to make thumbnails appear in a row
.thumbnails > li {
- float: left;
- margin: 0 0 @baseLineHeight @gridGutterWidth;
+ margin-bottom: @baseLineHeight;
}
+
+// The actual thumbnail (can be `a` or `div`)
.thumbnail {
display: block;
padding: 4px;
line-height: 1;
border: 1px solid #ddd;
@@ -21,9 +29,10 @@
// Add a hover state for linked versions only
a.thumbnail:hover {
border-color: @linkColor;
.box-shadow(0 1px 4px rgba(0,105,214,.25));
}
+
// Images and captions
.thumbnail > img {
display: block;
max-width: 100%;
margin-left: auto;