diff --git a/bootstrap-3.0.0/less/thumbnails.less b/bootstrap-3.0.0/less/thumbnails.less new file mode 100644 index 0000000000000000000000000000000000000000..1adee9e357797b1705646188a168df855c0df24b --- /dev/null +++ b/bootstrap-3.0.0/less/thumbnails.less @@ -0,0 +1,31 @@ +// +// Thumbnails +// -------------------------------------------------- + + +// Mixin and adjust the regular image class +.thumbnail { + .img-thumbnail(); + display: block; // Override the inline-block from `.img-thumbnail` + + > img { + .img-responsive(); + } +} + + +// Add a hover state for linked versions only +a.thumbnail:hover, +a.thumbnail:focus { + border-color: @link-color; +} + +// Images and captions +.thumbnail > img { + margin-left: auto; + margin-right: auto; +} +.thumbnail .caption { + padding: @thumbnail-caption-padding; + color: @thumbnail-caption-color; +}