aboutsummaryrefslogtreecommitdiffstats
path: root/docs/src/templates/css/animations.css
diff options
context:
space:
mode:
authorMatias Niemelàˆ2013-05-07 17:11:39 -0400
committerMisko Hevery2013-05-08 16:03:31 -0700
commit11f712bc3e310302eb2e8691cf6d110bdcde1810 (patch)
tree5e8b27a3dc2a8b0b18a4e0560f21f007206772b5 /docs/src/templates/css/animations.css
parent14757874a7cea7961f31211b245c417bd4b20512 (diff)
downloadangular.js-11f712bc3e310302eb2e8691cf6d110bdcde1810.tar.bz2
chore(ngAnimate): CSS classes X-setup/X-start -> X/X-active
BREAKING CHANGE: css classes foo-setup/foo-start become foo/foo-active The CSS transition classes have changed suffixes. To migrate rename .foo-setup {...} to .foo {...} .foo-start {...} to .foo-active {...} or for type: enter, leave, move, show, hide .foo-type-setup {...} to .foo-type {...} .foo-type-start {...} to .foo-type-active {...}
Diffstat (limited to 'docs/src/templates/css/animations.css')
-rw-r--r--docs/src/templates/css/animations.css16
1 files changed, 8 insertions, 8 deletions
diff --git a/docs/src/templates/css/animations.css b/docs/src/templates/css/animations.css
index c312f729..d8c983a3 100644
--- a/docs/src/templates/css/animations.css
+++ b/docs/src/templates/css/animations.css
@@ -1,4 +1,4 @@
-.reveal-setup {
+.reveal {
-webkit-transition:1s linear all;
-moz-transition:1s linear all;
-o-transition:1s linear all;
@@ -6,7 +6,7 @@
opacity:0;
}
-.reveal-setup.reveal-start {
+.reveal.reveal-active {
opacity:1;
}
@@ -15,7 +15,7 @@
overflow:hidden;
}
-.slide-reveal-setup {
+.slide-reveal {
-webkit-transition:0.5s linear all;
-moz-transition:0.5s linear all;
-o-transition:0.5s linear all;
@@ -26,12 +26,12 @@
opacity:0;
top:10px;
}
-.slide-reveal-setup.slide-reveal-start {
+.slide-reveal.slide-reveal-active {
top:0;
opacity:1;
}
-.expand-enter-setup {
+.expand-enter {
-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;
@@ -41,13 +41,13 @@
line-height:0;
height:0!important;
}
-.expand-enter-setup.expand-enter-start {
+.expand-enter.expand-enter-active {
opacity:1;
line-height:20px;
height:20px!important;
}
-.expand-leave-setup {
+.expand-leave {
-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;
@@ -56,7 +56,7 @@
opacity:1;
height:20px;
}
-.expand-leave-setup.expand-leave-start {
+.expand-leave.expand-leave-active {
opacity:0;
height:0;
}