summaryrefslogtreecommitdiff
path: root/bower_components/bootstrap/less/thumbnails.less
diff options
context:
space:
mode:
authorThomas Park <thomas@thomaspark.me>2013-08-19 20:05:19 -0400
committerThomas Park <thomas@thomaspark.me>2013-08-19 20:05:19 -0400
commit424dd8bc118b36c9173dbdc05661086c8566fd17 (patch)
tree6e8d8f9c4aa7b1bd209448f5ac7d78b4e983b573 /bower_components/bootstrap/less/thumbnails.less
parentd29efdf7b225badbee54f074400c996be7159233 (diff)
update bootstrap to 3.0.0 final
Diffstat (limited to 'bower_components/bootstrap/less/thumbnails.less')
-rwxr-xr-xbower_components/bootstrap/less/thumbnails.less29
1 files changed, 8 insertions, 21 deletions
diff --git a/bower_components/bootstrap/less/thumbnails.less b/bower_components/bootstrap/less/thumbnails.less
index 76f79b9e..1adee9e3 100755
--- a/bower_components/bootstrap/less/thumbnails.less
+++ b/bower_components/bootstrap/less/thumbnails.less
@@ -3,30 +3,17 @@
// --------------------------------------------------
-// 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 {
- padding: @thumbnail-padding;
- 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);
-}
+// Mixin and adjust the regular image class
.thumbnail {
- display: block;
-}
-.thumbnail > img {
- .img-responsive();
-}
-.img-thumbnail {
- .img-responsive(inline-block);
+ .img-thumbnail();
+ display: block; // Override the inline-block from `.img-thumbnail`
+
+ > img {
+ .img-responsive();
+ }
}
+
// Add a hover state for linked versions only
a.thumbnail:hover,
a.thumbnail:focus {