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-11-30 08:19:04 +01:00
|
|
|
display: block;
|
|
|
|
padding: @thumbnail-padding;
|
2013-08-27 02:48:32 +02:00
|
|
|
margin-bottom: @line-height-computed;
|
2013-11-30 08:19:04 +01:00
|
|
|
line-height: @line-height-base;
|
|
|
|
background-color: @thumbnail-bg;
|
|
|
|
border: 1px solid @thumbnail-border;
|
|
|
|
border-radius: @thumbnail-border-radius;
|
|
|
|
.transition(all .2s ease-in-out);
|
2013-08-19 04:24:10 +02:00
|
|
|
|
2013-09-16 17:21:09 +02:00
|
|
|
> img,
|
|
|
|
a > img {
|
2013-08-19 04:24:10 +02:00
|
|
|
.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-11-01 22:09:01 +01:00
|
|
|
// Add a hover state for linked versions only
|
|
|
|
a&:hover,
|
|
|
|
a&:focus,
|
|
|
|
a&.active {
|
|
|
|
border-color: @link-color;
|
|
|
|
}
|
2012-04-01 09:59:34 +02:00
|
|
|
|
2013-11-01 22:09:01 +01:00
|
|
|
// Image captions
|
|
|
|
.caption {
|
|
|
|
padding: @thumbnail-caption-padding;
|
|
|
|
color: @thumbnail-caption-color;
|
|
|
|
}
|
2011-11-17 08:58:36 +01:00
|
|
|
}
|