2012-06-28 21:46:45 -07:00
|
|
|
//
|
|
|
|
// Thumbnails
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
|
|
|
|
2013-01-17 20:18:03 -08:00
|
|
|
// Base classes
|
|
|
|
// For thumbnail block-level composite components and simple image styles
|
|
|
|
|
|
|
|
// The actual thumbnailed element
|
|
|
|
// Can be `a`, `div`, or `img`
|
|
|
|
.thumbnail,
|
|
|
|
.img-thumbnail {
|
2011-12-21 18:21:55 -06:00
|
|
|
padding: 4px;
|
2012-11-30 14:45:25 -08:00
|
|
|
line-height: @line-height-base;
|
2013-04-21 18:29:06 -07:00
|
|
|
background-color: @thumbnail-bg;
|
|
|
|
border: 1px solid @thumbnail-border;
|
|
|
|
border-radius: @thumbnail-border-radius;
|
2012-08-15 14:49:55 -07:00
|
|
|
.transition(all .2s ease-in-out);
|
2011-12-19 22:58:56 -08:00
|
|
|
}
|
2013-01-17 20:18:03 -08:00
|
|
|
.thumbnail {
|
|
|
|
display: block;
|
|
|
|
}
|
2013-07-01 19:42:26 -07:00
|
|
|
.thumbnail > img,
|
2013-01-17 20:18:03 -08:00
|
|
|
.img-thumbnail {
|
2013-07-01 19:42:26 -07:00
|
|
|
.img-responsive();
|
2013-01-17 20:18:03 -08: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 {
|
|
|
|
padding: 9px;
|
2013-04-21 18:29:06 -07:00
|
|
|
color: @thumbnail-caption-color;
|
2011-11-16 23:58:36 -08:00
|
|
|
}
|