From ef22968810d555f78d3bbf7b5428757690c8cc70 Mon Sep 17 00:00:00 2001 From: Matias Niemelä Date: Thu, 6 Jun 2013 01:28:50 -0400 Subject: feat(ngdocs): support popover, foldouts and foldover annotations --- docs/src/templates/css/animations.css | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) (limited to 'docs/src/templates/css/animations.css') diff --git a/docs/src/templates/css/animations.css b/docs/src/templates/css/animations.css index d8c983a3..2d54bbfb 100644 --- a/docs/src/templates/css/animations.css +++ b/docs/src/templates/css/animations.css @@ -79,3 +79,26 @@ -o-transition: color 0 ease-in; /* opera is special :) */ transition: none; } + +.foldout-show, .foldout-enter, .foldout-hide { + -webkit-transition:0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) all; + -moz-transition:0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) all; + -o-transition:0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) all; + transition:0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) all; +} + +.foldout-show, .foldout-enter { + opacity:0; +} + +.foldout-show.foldout-show-active, .foldout-hide.foldout-hide-active { + opacity:1; +} + +.foldout-hide { + opacity:1; +} + +.foldout-hide.foldout-hide-active { + opacity:0; +} -- cgit v1.2.3