mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
7796e645c9
Hadn't thought about this until fixes #10137, but it makes sense I think to have margin on the bottom of thumbnails for spacing when stacking (or using different grid tiers).
32 lines
603 B
Text
32 lines
603 B
Text
//
|
|
// Thumbnails
|
|
// --------------------------------------------------
|
|
|
|
|
|
// Mixin and adjust the regular image class
|
|
.thumbnail {
|
|
.img-thumbnail();
|
|
display: block; // Override the inline-block from `.img-thumbnail`
|
|
margin-bottom: @line-height-computed;
|
|
|
|
> 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;
|
|
}
|