First working Spring-based version
[proteocache.git] / webapp / resources / bootstrap-2.3 / less / component-animations.less
diff --git a/webapp/resources/bootstrap-2.3/less/component-animations.less b/webapp/resources/bootstrap-2.3/less/component-animations.less
new file mode 100644 (file)
index 0000000..d614263
--- /dev/null
@@ -0,0 +1,22 @@
+//
+// Component animations
+// --------------------------------------------------
+
+
+.fade {
+  opacity: 0;
+  .transition(opacity .15s linear);
+  &.in {
+    opacity: 1;
+  }
+}
+
+.collapse {
+  position: relative;
+  height: 0;
+  overflow: hidden;
+  .transition(height .35s ease);
+  &.in {
+    height: auto;
+  }
+}