1

Add Twitter Bootstrap v3.0.3.

This commit is contained in:
vonavi
2014-01-24 11:24:23 +02:00
parent 85b7762638
commit 71f51fd2c8
179 changed files with 42288 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
//
// Component animations
// --------------------------------------------------
// Heads up!
//
// We don't use the `.opacity()` mixin here since it causes a bug with text
// fields in IE7-8. Source: https://github.com/twitter/bootstrap/pull/3552.
.fade {
opacity: 0;
.transition(opacity .15s linear);
&.in {
opacity: 1;
}
}
.collapse {
display: none;
&.in {
display: block;
}
}
.collapsing {
position: relative;
height: 0;
overflow: hidden;
.transition(height .35s ease);
}