aboutsummaryrefslogtreecommitdiffstats
path: root/docs/src/templates/css
diff options
context:
space:
mode:
authorMatias Niemelàˆ2013-07-06 00:48:54 -0400
committerMisko Hevery2013-07-26 23:49:54 -0700
commitaa2133ad818d2e5c27cbd3933061797096356c8a (patch)
treeb14901a1cab572dca6fab79e370cc89210360bbb /docs/src/templates/css
parent8ed0d5b6aa2e29ebc8d2026cb04380ed3343baef (diff)
downloadangular.js-aa2133ad818d2e5c27cbd3933061797096356c8a.tar.bz2
fix(ngInclude): $animate refactoring + use transclusion
BREAKING CHANGE: previously ngInclude only updated its content, after this change ngInclude will recreate itself every time a new content is included. This ensures that a single rootElement for all the included contents always exists, which makes definition of css styles for animations much easier.
Diffstat (limited to 'docs/src/templates/css')
-rw-r--r--docs/src/templates/css/animations.css4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/src/templates/css/animations.css b/docs/src/templates/css/animations.css
index 7324a8a1..cc531ccb 100644
--- a/docs/src/templates/css/animations.css
+++ b/docs/src/templates/css/animations.css
@@ -15,7 +15,7 @@
overflow:hidden;
}
-.slide-reveal > .ng-enter {
+.slide-reveal.ng-enter {
-webkit-transition:0.5s linear all;
-moz-transition:0.5s linear all;
-o-transition:0.5s linear all;
@@ -26,7 +26,7 @@
opacity:0;
top:10px;
}
-.slide-reveal > .ng-enter.ng-enter-active {
+.slide-reveal.ng-enter.ng-enter-active {
top:0;
opacity:1;
}