]> BookStack Code Mirror - bookstack/blobdiff - resources/assets/sass/_animations.scss
Merge pull request #3 from OsmosysSoftware/revert-1-issue-181
[bookstack] / resources / assets / sass / _animations.scss
index e6e85ef8edb7e2e4c9f7785e2e2131f633e7ccaa..467399a660e90b0ccc12ade8422c7e09c5d7a4a3 100644 (file)
@@ -2,7 +2,7 @@
 .anim.fadeIn {
   opacity: 0;
   animation-name: fadeIn;
-  animation-duration: 160ms;
+  animation-duration: 180ms;
   animation-timing-function: ease-in-out;
   animation-fill-mode: forwards;
 }
     transform: translate3d(0, 0, 0);
   }
 }
+
+@keyframes pointer {
+  0% {
+      transform: translate3d(0, 20px, 0) scale3d(0, 0, 0);
+  }
+  100% {
+      transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
+  }
+}
+
+.anim.pointer {
+  transform-origin: 50% 100%;
+  animation-name: pointer;
+  animation-duration: 180ms;
+  animation-delay: 0s;
+  animation-timing-function: cubic-bezier(.62, .28, .23, .99);
+}
+
+.anim.selectFade {
+  transition: background-color ease-in-out 3000ms;
+}
\ No newline at end of file