2012-06-28 21:46:45 -07:00
|
|
|
//
|
|
|
|
// Thumbnails
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
|
|
|
|
2013-08-18 19:24:10 -07:00
|
|
|
// Mixin and adjust the regular image class
|
2013-01-17 20:18:03 -08:00
|
|
|
.thumbnail {
|
2013-08-18 19:24:10 -07:00
|
|
|
.img-thumbnail();
|
|
|
|
display: block; // Override the inline-block from `.img-thumbnail`
|
|
|
|
|
|
|
|
> img {
|
|
|
|
.img-responsive();
|
|
|
|
}
|
2013-08-15 13:40:21 -07:00
|
|
|
}
|
2013-01-17 20:18:03 -08:00
|
|
|
|
2013-08-18 19:24:10 -07:00
|
|
|
|
2011-12-19 22:58:56 -08:00
|
|
|
// Add a hover state for linked versions only
|
2013-01-02 22:39:21 +00:00
|
|
|
a.thumbnail:hover,
|
|
|
|
a.thumbnail:focus {
|
2012-11-30 14:37:24 -08:00
|
|
|
border-color: @link-color;
|
2011-12-19 22:58:56 -08:00
|
|
|
}
|
2012-04-01 00:59:34 -07:00
|
|
|
|
2011-12-19 22:58:56 -08:00
|
|
|
// Images and captions
|
|
|
|
.thumbnail > img {
|
2012-01-28 22:48:25 -08:00
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
2011-12-19 22:58:56 -08:00
|
|
|
}
|
|
|
|
.thumbnail .caption {
|
2013-08-11 19:32:16 -07:00
|
|
|
padding: @thumbnail-caption-padding;
|
2013-04-21 18:29:06 -07:00
|
|
|
color: @thumbnail-caption-color;
|
2011-11-16 23:58:36 -08:00
|
|
|
}
|