Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Otto <markotto@twitter.com>2012-04-01 12:05:00 +0400
committerMark Otto <markotto@twitter.com>2012-04-01 12:05:00 +0400
commit647f1c98eda0f150e54e9193181acb462a3b9357 (patch)
tree20b98f906f26716563f4f978e1e07f354a164bad /less/tests/css-tests.html
parentfe05f9aeb259733de4598014db9df9193cc01ea2 (diff)
fix #2296: allow fluid thumbnails
Diffstat (limited to 'less/tests/css-tests.html')
-rw-r--r--less/tests/css-tests.html23
1 files changed, 22 insertions, 1 deletions
diff --git a/less/tests/css-tests.html b/less/tests/css-tests.html
index 7cf76524b0..255a078b35 100644
--- a/less/tests/css-tests.html
+++ b/less/tests/css-tests.html
@@ -421,7 +421,28 @@
</li>
</ul>
-
+<h4>Fluid thumbnails</h4>
+<div class="row-fluid">
+ <div class="span8">
+ <ul class="thumbnails">
+ <li class="span4">
+ <a href="#" class="thumbnail">
+ <img src="http://placehold.it/260x180" alt="">
+ </a>
+ </li>
+ <li class="span4">
+ <a href="#" class="thumbnail">
+ <img src="http://placehold.it/260x180" alt="">
+ </a>
+ </li>
+ <li class="span4">
+ <a href="#" class="thumbnail">
+ <img src="http://placehold.it/260x180" alt="">
+ </a>
+ </li>
+ </ul>
+ </div>
+</div>