]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
adding well sizes
authorMark Otto <markotto@twitter.com>
Wed, 7 Mar 2012 05:12:43 +0000 (21:12 -0800)
committerMark Otto <markotto@twitter.com>
Wed, 7 Mar 2012 05:12:43 +0000 (21:12 -0800)
docs/assets/bootstrap.zip
docs/assets/css/bootstrap.css
less/wells.less

index 3549d82ccbda0b0eeffffa3da7da197a1a668645..3cf863a88762b626e54e9073623efcbb4112820a 100644 (file)
Binary files a/docs/assets/bootstrap.zip and b/docs/assets/bootstrap.zip differ
index ef60ecf47a1a1f0f60faae1815d6760bf3e15e65..9854e974cae5a471d93efa7f1c050bdc8f312674 100644 (file)
@@ -1783,6 +1783,18 @@ table .span24 {
   border-color: #ddd;
   border-color: rgba(0, 0, 0, 0.15);
 }
+.well-large {
+  padding: 24px;
+  -webkit-border-radius: 6px;
+  -moz-border-radius: 6px;
+  border-radius: 6px;
+}
+.well-small {
+  padding: 9px;
+  -webkit-border-radius: 3px;
+  -moz-border-radius: 3px;
+  border-radius: 3px;
+}
 .fade {
   -webkit-transition: opacity 0.15s linear;
   -moz-transition: opacity 0.15s linear;
index 244b8ca102b578dd3f66fa5017e1be43b154f66d..9300061a508423bf9078aa7f2674dc8e9e4dfd92 100644 (file)
     border-color: rgba(0,0,0,.15);
   }
 }
+
+// Sizes
+.well-large {
+  padding: 24px;
+  .border-radius(6px);
+}
+.well-small {
+  padding: 9px;
+  .border-radius(3px);
+}