Issue 10 - Include less files and replace 2 css files with 1 minified css from less files

This commit is contained in:
perryharlock
2013-09-18 14:40:29 +01:00
parent a956c084f3
commit 6dff1c0a2b
52 changed files with 8386 additions and 387 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);
}