2012-06-29 12:46:45 +08:00
|
|
|
//
|
|
|
|
// Thumbnails
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
|
|
|
|
2012-04-01 15:59:34 +08:00
|
|
|
// The actual thumbnail (can be `a` or `div`)
|
2011-12-20 14:58:56 +08:00
|
|
|
.thumbnail {
|
|
|
|
display: block;
|
2011-12-22 08:21:55 +08:00
|
|
|
padding: 4px;
|
2012-08-15 02:06:35 +08:00
|
|
|
line-height: @baseLineHeight;
|
2011-12-20 14:58:56 +08:00
|
|
|
border: 1px solid #ddd;
|
2012-11-03 00:36:51 +08:00
|
|
|
border-radius: @baseBorderRadius;
|
2012-07-06 01:12:15 +08:00
|
|
|
.box-shadow(0 1px 3px rgba(0,0,0,.055));
|
2012-08-16 05:49:55 +08:00
|
|
|
.transition(all .2s ease-in-out);
|
2011-12-20 14:58:56 +08:00
|
|
|
}
|
|
|
|
// Add a hover state for linked versions only
|
|
|
|
a.thumbnail:hover {
|
|
|
|
border-color: @linkColor;
|
|
|
|
.box-shadow(0 1px 4px rgba(0,105,214,.25));
|
|
|
|
}
|
2012-04-01 15:59:34 +08:00
|
|
|
|
2011-12-20 14:58:56 +08:00
|
|
|
// Images and captions
|
|
|
|
.thumbnail > img {
|
|
|
|
display: block;
|
2011-12-22 08:21:55 +08:00
|
|
|
max-width: 100%;
|
2012-01-29 14:48:25 +08:00
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
2011-12-20 14:58:56 +08:00
|
|
|
}
|
|
|
|
.thumbnail .caption {
|
|
|
|
padding: 9px;
|
2012-07-06 01:12:15 +08:00
|
|
|
color: @gray;
|
2011-11-17 15:58:36 +08:00
|
|
|
}
|