summaryrefslogtreecommitdiff
path: root/openstack_dashboard/static/bootstrap/less/component-animations.less
diff options
context:
space:
mode:
Diffstat (limited to 'openstack_dashboard/static/bootstrap/less/component-animations.less')
-rw-r--r--openstack_dashboard/static/bootstrap/less/component-animations.less18
1 files changed, 18 insertions, 0 deletions
diff --git a/openstack_dashboard/static/bootstrap/less/component-animations.less b/openstack_dashboard/static/bootstrap/less/component-animations.less
new file mode 100644
index 00000000..4f2a4fd1
--- /dev/null
+++ b/openstack_dashboard/static/bootstrap/less/component-animations.less
@@ -0,0 +1,18 @@
+// COMPONENT ANIMATIONS
+// --------------------
+
+.fade {
+ .transition(opacity .15s linear);
+ opacity: 0;
+ &.in {
+ opacity: 1;
+ }
+}
+
+.collapse {
+ .transition(height .35s ease);
+ position:relative;
+ overflow:hidden;
+ height: 0;
+ &.in { height: auto; }
+}