PluginProbe
FluentSnippets – High-Performance Code Snippets, Header & Footer Code, Custom CSS & PHP Code Manager / 1.2.1
FluentSnippets – High-Performance Code Snippets, Header & Footer Code, Custom CSS & PHP Code Manager v1.2.1
10.56 1.2.1 10 10.1 10.2 10.3 10.31 10.32 10.33 10.34 10.50 10.51 10.52 10.53 10.55 9.0 9.0.1 9.4 trunk 1.0.0 1.1 1.2
easy-code-manager / framework / css / bootstrap / less / thumbnails.less

thumbnails.less in FluentSnippets – High-Performance Code Snippets, Header & Footer Code, Custom CSS & PHP Code Manager 1.2.1, at framework/css/bootstrap/less/thumbnails.less

37 lines 753 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 //
2 // Thumbnails
3 // --------------------------------------------------
4
5
6 // Mixin and adjust the regular image class
7 .thumbnail {
8 display: block;
9 padding: @thumbnail-padding;
10 margin-bottom: @line-height-computed;
11 line-height: @line-height-base;
12 background-color: @thumbnail-bg;
13 border: 1px solid @thumbnail-border;
14 border-radius: @thumbnail-border-radius;
15 .transition(border .2s ease-in-out);
16
17 > img,
18 a > img {
19 &:extend(.img-responsive);
20 margin-left: auto;
21 margin-right: auto;
22 }
23
24 // Add a hover state for linked versions only
25 a&:hover,
26 a&:focus,
27 a&.active {
28 border-color: @link-color;
29 }
30
31 // Image captions
32 .caption {
33 padding: @thumbnail-caption-padding;
34 color: @thumbnail-caption-color;
35 }
36 }
37