mirror of
https://github.com/kakwa/ldapcherry
synced 2024-11-05 09:08:53 +01:00
32 lines
601 B
Plaintext
32 lines
601 B
Plaintext
|
//
|
||
|
// Thumbnails
|
||
|
// --------------------------------------------------
|
||
|
|
||
|
|
||
|
// Mixin and adjust the regular image class
|
||
|
.thumbnail {
|
||
|
.img-thumbnail();
|
||
|
display: block; // Override the inline-block from `.img-thumbnail`
|
||
|
margin-bottom: @line-height-computed;
|
||
|
|
||
|
> img {
|
||
|
.img-responsive();
|
||
|
margin-left: auto;
|
||
|
margin-right: auto;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
// Add a hover state for linked versions only
|
||
|
a.thumbnail:hover,
|
||
|
a.thumbnail:focus,
|
||
|
a.thumbnail.active {
|
||
|
border-color: @link-color;
|
||
|
}
|
||
|
|
||
|
// Image captions
|
||
|
.thumbnail .caption {
|
||
|
padding: @thumbnail-caption-padding;
|
||
|
color: @thumbnail-caption-color;
|
||
|
}
|