diff options
| author | Jacob Thornton <[email protected]> | 2011-11-25 17:23:14 -0800 |
|---|---|---|
| committer | Jacob Thornton <[email protected]> | 2011-11-25 17:23:14 -0800 |
| commit | 98fddaa3557b1c872f1e585d579ec7e5e989e95d (patch) | |
| tree | 50a1963f3cd4c7059a94ebedb41d70d32f0a300a /bootstrap.css | |
| parent | 96adf8f91811a71bf2fbd6737c8bd80fe400b8c2 (diff) | |
| download | bootstrap-98fddaa3557b1c872f1e585d579ec7e5e989e95d.tar.xz bootstrap-98fddaa3557b1c872f1e585d579ec7e5e989e95d.zip | |
new plugin "collapse" for collapsible lists and "accordion" like support
Diffstat (limited to 'bootstrap.css')
| -rw-r--r-- | bootstrap.css | 28 |
1 files changed, 27 insertions, 1 deletions
diff --git a/bootstrap.css b/bootstrap.css index 895f1c861..19d07745e 100644 --- a/bootstrap.css +++ b/bootstrap.css @@ -6,7 +6,7 @@ * http://www.apache.org/licenses/LICENSE-2.0 * * Designed and built with all the love in the world @twitter by @mdo and @fat. - * Date: Thu Nov 24 13:45:21 PST 2011 + * Date: Fri Nov 25 12:09:37 PST 2011 */ /* Reset.less * Props to Eric Meyer (meyerweb.com) for his CSS reset file. We're using an adapted version here that cuts out some of the reset HTML elements we will never need here (i.e., dfn, samp, etc). @@ -1879,6 +1879,32 @@ button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner { .fade.in { opacity: 1; } +.collapse { + position: relative; + overflow: hidden; +} +.collapse.height { + -webkit-transition: height 0.35s ease; + -moz-transition: height 0.35s ease; + -ms-transition: height 0.35s ease; + -o-transition: height 0.35s ease; + transition: height 0.35s ease; + height: 0; +} +.collapse.height.in { + height: auto; +} +.collapse.width { + -webkit-transition: width 0.35s ease; + -moz-transition: width 0.35s ease; + -ms-transition: width 0.35s ease; + -o-transition: width 0.35s ease; + transition: width 0.35s ease; + width: 0; +} +.collapse.width.in { + width: auto; +} .label { padding: 1px 3px 2px; font-size: 9.75px; |
