Add upstream plugins

Signed-off-by: Adrian Nöthlich <git@promasu.tech>
This commit is contained in:
2019-10-25 22:42:20 +02:00
parent 5d3c2ec184
commit 290736650a
1186 changed files with 302577 additions and 0 deletions

View File

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