From 663394f188c4460ad889b70a82557db0f9754032 Mon Sep 17 00:00:00 2001 From: seshukm Date: Mon, 6 Mar 2017 10:23:16 +0530 Subject: thirdparty files updated for the vnf market place IssueId : CLIENT-4 Change-Id: Id58c2d11985bda35dc482b122dc404aea2e477da Signed-off-by: seshukm --- .../thirdparty/bootstrap/less/thumbnails.less | 36 ++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 vnfmarket/common/thirdparty/bootstrap/less/thumbnails.less (limited to 'vnfmarket/common/thirdparty/bootstrap/less/thumbnails.less') diff --git a/vnfmarket/common/thirdparty/bootstrap/less/thumbnails.less b/vnfmarket/common/thirdparty/bootstrap/less/thumbnails.less new file mode 100644 index 00000000..0713e67d --- /dev/null +++ b/vnfmarket/common/thirdparty/bootstrap/less/thumbnails.less @@ -0,0 +1,36 @@ +// +// 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-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; + } +} -- cgit 1.2.3-korg