summaryrefslogtreecommitdiff
path: root/bootstrap/less/thumbnails.less
diff options
context:
space:
mode:
authorPrashant S2019-07-26 11:21:31 +0530
committerGitHub2019-07-26 11:21:31 +0530
commitbfb41f58674f7c24bd41e6e6891f0773c3706ddc (patch)
treea407e9cac3242db67394711596835982160b0eaa /bootstrap/less/thumbnails.less
parente5a79b1f0f70eb0bc413c5b85139617dbe84b07d (diff)
parent17bc989bd924aa4682807cf7920abb8558da0006 (diff)
downloadfossee_istos-master.tar.gz
fossee_istos-master.tar.bz2
fossee_istos-master.zip
Merge pull request #1 from sanjeevi01/masterHEADmaster
internship work for new theme for drupal-8.x
Diffstat (limited to 'bootstrap/less/thumbnails.less')
-rwxr-xr-xbootstrap/less/thumbnails.less38
1 files changed, 38 insertions, 0 deletions
diff --git a/bootstrap/less/thumbnails.less b/bootstrap/less/thumbnails.less
new file mode 100755
index 0000000..11bea9b
--- /dev/null
+++ b/bootstrap/less/thumbnails.less
@@ -0,0 +1,38 @@
+// stylelint-disable selector-no-qualifying-type
+
+//
+// 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(border .2s ease-in-out);
+
+ > img,
+ a > img {
+ &:extend(.img-responsive);
+ margin-right: auto;
+ margin-left: 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;
+ }
+}