diff options
| author | Matias Niemelä | 2013-06-06 01:28:50 -0400 | 
|---|---|---|
| committer | Misko Hevery | 2013-06-17 22:00:54 -0700 | 
| commit | ef22968810d555f78d3bbf7b5428757690c8cc70 (patch) | |
| tree | 1a19f2649e07406bd1988c4d915deec87073c568 /docs/src/templates/css/animations.css | |
| parent | 07ef1667db632d0fd75472f30343255edcebf43b (diff) | |
| download | angular.js-ef22968810d555f78d3bbf7b5428757690c8cc70.tar.bz2 | |
feat(ngdocs): support popover, foldouts and foldover annotations
Diffstat (limited to 'docs/src/templates/css/animations.css')
| -rw-r--r-- | docs/src/templates/css/animations.css | 23 | 
1 files changed, 23 insertions, 0 deletions
| 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; +} | 
