Initial Bootstrap 3 migration

This commit is contained in:
Taloth Saldono 2014-04-01 22:10:36 +02:00 committed by Mark McDowall
parent ad0e372c35
commit 28fa264c69
151 changed files with 9617 additions and 6299 deletions

View file

@ -2,6 +2,10 @@
// 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;
@ -12,11 +16,14 @@
}
.collapse {
display: none;
&.in {
display: block;
}
}
.collapsing {
position: relative;
height: 0;
overflow: hidden;
.transition(height .35s ease);
&.in {
height: auto;
}
}