aboutsummaryrefslogtreecommitdiff
path: root/less
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2014-07-08 04:00:35 -0700
committerMark Otto <[email protected]>2014-07-08 04:00:35 -0700
commit9c319d67ee96d0e417098fcb8206413f7a3ed7d3 (patch)
tree70e6e0033d7062ec4ec761dff617c1cdcb02fd37 /less
parent527eccaa9f344c555e33f5324775cf2e24e9bf55 (diff)
downloadbootstrap-9c319d67ee96d0e417098fcb8206413f7a3ed7d3.tar.xz
bootstrap-9c319d67ee96d0e417098fcb8206413f7a3ed7d3.zip
Drop: Thumbnails completely, as they'll be replaced
Diffstat (limited to 'less')
-rw-r--r--less/bootstrap.less1
-rw-r--r--less/scaffolding.less2
-rw-r--r--less/thumbnails.less36
3 files changed, 0 insertions, 39 deletions
diff --git a/less/bootstrap.less b/less/bootstrap.less
index 58d80d1e6..0ba1febc2 100644
--- a/less/bootstrap.less
+++ b/less/bootstrap.less
@@ -28,7 +28,6 @@
@import "labels.less";
@import "badges.less";
@import "jumbotron.less";
-@import "thumbnails.less";
@import "alerts.less";
@import "progress-bars.less";
@import "media.less";
diff --git a/less/scaffolding.less b/less/scaffolding.less
index 41b3e2636..970caed9c 100644
--- a/less/scaffolding.less
+++ b/less/scaffolding.less
@@ -86,8 +86,6 @@ img {
}
// Image thumbnails
-//
-// Heads up! This is mixin-ed into thumbnails.less for `.thumbnail`.
.img-thumbnail {
padding: @thumbnail-padding;
line-height: @line-height-base;
diff --git a/less/thumbnails.less b/less/thumbnails.less
deleted file mode 100644
index 42968cd9a..000000000
--- a/less/thumbnails.less
+++ /dev/null
@@ -1,36 +0,0 @@
-//
-// Thumbnails
-// --------------------------------------------------
-
-
-// Mixin and adjust the regular image class
-.thumbnail {
- display: block;
- padding: @thumbnail-padding;
- margin-bottom: @line-height-computed;
- 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;
-
- > img,
- a > img {
- &:extend(.img-responsive);
- margin-left: auto;
- margin-right: auto;
- }
-
- // Add a hover state for linked versions only
- a&:hover,
- a&:focus,
- a&.active {
- border-color: @link-color;
- }
-
- // Image captions
- .caption {
- padding: @thumbnail-caption-padding;
- color: @thumbnail-caption-color;
- }
-}