From: Mark Otto Date: Wed, 7 Mar 2012 05:12:43 +0000 (-0800) Subject: adding well sizes X-Git-Tag: v2.0.2~66 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6b9f70797d812f5a3a90035e4e8ccc2b7cfd0f66;p=thirdparty%2Fbootstrap.git adding well sizes --- diff --git a/docs/assets/bootstrap.zip b/docs/assets/bootstrap.zip index 3549d82ccb..3cf863a887 100644 Binary files a/docs/assets/bootstrap.zip and b/docs/assets/bootstrap.zip differ diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index ef60ecf47a..9854e974ca 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -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; diff --git a/less/wells.less b/less/wells.less index 244b8ca102..9300061a50 100644 --- a/less/wells.less +++ b/less/wells.less @@ -15,3 +15,13 @@ border-color: rgba(0,0,0,.15); } } + +// Sizes +.well-large { + padding: 24px; + .border-radius(6px); +} +.well-small { + padding: 9px; + .border-radius(3px); +}