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