feat(ngAnimate): complete rewrite of animations
- ngAnimate directive is gone and was replaced with class based animations/transitions
- support for triggering animations on css class additions and removals
- done callback was added to all animation apis
- $animation and $animator where merged into a single $animate service with api:
- $animate.enter(element, parent, after, done);
- $animate.leave(element, done);
- $animate.move(element, parent, after, done);
- $animate.addClass(element, className, done);
- $animate.removeClass(element, className, done);
BREAKING CHANGE: too many things changed, we'll write up a separate doc with migration instructions
2013-06-18 17:59:57 +00:00
|
|
|
.reveal.ng-enter {
|
2013-04-02 23:41:16 +00:00
|
|
|
-webkit-transition:1s linear all;
|
|
|
|
|
-moz-transition:1s linear all;
|
|
|
|
|
-o-transition:1s linear all;
|
|
|
|
|
transition:1s linear all;
|
|
|
|
|
|
|
|
|
|
opacity:0;
|
|
|
|
|
}
|
feat(ngAnimate): complete rewrite of animations
- ngAnimate directive is gone and was replaced with class based animations/transitions
- support for triggering animations on css class additions and removals
- done callback was added to all animation apis
- $animation and $animator where merged into a single $animate service with api:
- $animate.enter(element, parent, after, done);
- $animate.leave(element, done);
- $animate.move(element, parent, after, done);
- $animate.addClass(element, className, done);
- $animate.removeClass(element, className, done);
BREAKING CHANGE: too many things changed, we'll write up a separate doc with migration instructions
2013-06-18 17:59:57 +00:00
|
|
|
.reveal.ng-enter.ng-enter-active {
|
2013-04-02 23:41:16 +00:00
|
|
|
opacity:1;
|
|
|
|
|
}
|
|
|
|
|
|
2013-07-26 18:10:45 +00:00
|
|
|
.nav-list {
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2013-04-04 12:49:04 +00:00
|
|
|
.nav-list li {
|
2013-07-26 18:10:45 +00:00
|
|
|
margin:0!important;
|
|
|
|
|
padding:0 15px;
|
2013-04-04 12:49:04 +00:00
|
|
|
height:20px;
|
|
|
|
|
overflow:hidden;
|
|
|
|
|
}
|
|
|
|
|
|
2013-07-06 04:48:54 +00:00
|
|
|
.slide-reveal.ng-enter {
|
2013-04-02 23:41:16 +00:00
|
|
|
-webkit-transition:0.5s linear all;
|
|
|
|
|
-moz-transition:0.5s linear all;
|
|
|
|
|
-o-transition:0.5s linear all;
|
|
|
|
|
transition:0.5s linear all;
|
2013-04-04 12:49:04 +00:00
|
|
|
|
feat(ngAnimate): complete rewrite of animations
- ngAnimate directive is gone and was replaced with class based animations/transitions
- support for triggering animations on css class additions and removals
- done callback was added to all animation apis
- $animation and $animator where merged into a single $animate service with api:
- $animate.enter(element, parent, after, done);
- $animate.leave(element, done);
- $animate.move(element, parent, after, done);
- $animate.addClass(element, className, done);
- $animate.removeClass(element, className, done);
BREAKING CHANGE: too many things changed, we'll write up a separate doc with migration instructions
2013-06-18 17:59:57 +00:00
|
|
|
opacity:0.5;
|
2013-04-04 12:49:04 +00:00
|
|
|
position:relative;
|
|
|
|
|
opacity:0;
|
|
|
|
|
top:10px;
|
2013-04-02 23:41:16 +00:00
|
|
|
}
|
2013-07-06 04:48:54 +00:00
|
|
|
.slide-reveal.ng-enter.ng-enter-active {
|
2013-04-04 12:49:04 +00:00
|
|
|
top:0;
|
2013-04-02 23:41:16 +00:00
|
|
|
opacity:1;
|
|
|
|
|
}
|
|
|
|
|
|
feat(ngAnimate): complete rewrite of animations
- ngAnimate directive is gone and was replaced with class based animations/transitions
- support for triggering animations on css class additions and removals
- done callback was added to all animation apis
- $animation and $animator where merged into a single $animate service with api:
- $animate.enter(element, parent, after, done);
- $animate.leave(element, done);
- $animate.move(element, parent, after, done);
- $animate.addClass(element, className, done);
- $animate.removeClass(element, className, done);
BREAKING CHANGE: too many things changed, we'll write up a separate doc with migration instructions
2013-06-18 17:59:57 +00:00
|
|
|
.expand.ng-enter,
|
|
|
|
|
.expand.ng-leave {
|
2013-04-04 12:49:04 +00:00
|
|
|
-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;
|
feat(ngAnimate): complete rewrite of animations
- ngAnimate directive is gone and was replaced with class based animations/transitions
- support for triggering animations on css class additions and removals
- done callback was added to all animation apis
- $animation and $animator where merged into a single $animate service with api:
- $animate.enter(element, parent, after, done);
- $animate.leave(element, done);
- $animate.move(element, parent, after, done);
- $animate.addClass(element, className, done);
- $animate.removeClass(element, className, done);
BREAKING CHANGE: too many things changed, we'll write up a separate doc with migration instructions
2013-06-18 17:59:57 +00:00
|
|
|
}
|
|
|
|
|
.expand.ng-enter {
|
2013-04-02 23:41:16 +00:00
|
|
|
opacity:0;
|
2013-04-04 12:49:04 +00:00
|
|
|
line-height:0;
|
|
|
|
|
height:0!important;
|
2013-04-02 23:41:16 +00:00
|
|
|
}
|
feat(ngAnimate): complete rewrite of animations
- ngAnimate directive is gone and was replaced with class based animations/transitions
- support for triggering animations on css class additions and removals
- done callback was added to all animation apis
- $animation and $animator where merged into a single $animate service with api:
- $animate.enter(element, parent, after, done);
- $animate.leave(element, done);
- $animate.move(element, parent, after, done);
- $animate.addClass(element, className, done);
- $animate.removeClass(element, className, done);
BREAKING CHANGE: too many things changed, we'll write up a separate doc with migration instructions
2013-06-18 17:59:57 +00:00
|
|
|
.expand.ng-enter.expand.ng-enter-active {
|
2013-04-02 23:41:16 +00:00
|
|
|
opacity:1;
|
2013-04-04 12:49:04 +00:00
|
|
|
line-height:20px;
|
|
|
|
|
height:20px!important;
|
2013-04-02 23:41:16 +00:00
|
|
|
}
|
|
|
|
|
|
feat(ngAnimate): complete rewrite of animations
- ngAnimate directive is gone and was replaced with class based animations/transitions
- support for triggering animations on css class additions and removals
- done callback was added to all animation apis
- $animation and $animator where merged into a single $animate service with api:
- $animate.enter(element, parent, after, done);
- $animate.leave(element, done);
- $animate.move(element, parent, after, done);
- $animate.addClass(element, className, done);
- $animate.removeClass(element, className, done);
BREAKING CHANGE: too many things changed, we'll write up a separate doc with migration instructions
2013-06-18 17:59:57 +00:00
|
|
|
.expand.ng-leave {
|
2013-04-02 23:41:16 +00:00
|
|
|
opacity:1;
|
2013-04-04 12:49:04 +00:00
|
|
|
height:20px;
|
2013-04-02 23:41:16 +00:00
|
|
|
}
|
feat(ngAnimate): complete rewrite of animations
- ngAnimate directive is gone and was replaced with class based animations/transitions
- support for triggering animations on css class additions and removals
- done callback was added to all animation apis
- $animation and $animator where merged into a single $animate service with api:
- $animate.enter(element, parent, after, done);
- $animate.leave(element, done);
- $animate.move(element, parent, after, done);
- $animate.addClass(element, className, done);
- $animate.removeClass(element, className, done);
BREAKING CHANGE: too many things changed, we'll write up a separate doc with migration instructions
2013-06-18 17:59:57 +00:00
|
|
|
.expand.ng-leave.expand.ng-leave-active {
|
2013-04-02 23:41:16 +00:00
|
|
|
opacity:0;
|
2013-04-04 12:49:04 +00:00
|
|
|
height:0;
|
2013-04-02 23:41:16 +00:00
|
|
|
}
|
|
|
|
|
|
feat(ngAnimate): complete rewrite of animations
- ngAnimate directive is gone and was replaced with class based animations/transitions
- support for triggering animations on css class additions and removals
- done callback was added to all animation apis
- $animation and $animator where merged into a single $animate service with api:
- $animate.enter(element, parent, after, done);
- $animate.leave(element, done);
- $animate.move(element, parent, after, done);
- $animate.addClass(element, className, done);
- $animate.removeClass(element, className, done);
BREAKING CHANGE: too many things changed, we'll write up a separate doc with migration instructions
2013-06-18 17:59:57 +00:00
|
|
|
.animate-container.animations-off * {
|
2013-04-02 23:41:16 +00:00
|
|
|
-webkit-transition: none;
|
|
|
|
|
-moz-transition: none;
|
|
|
|
|
-o-transition: color 0 ease-in; /* opera is special :) */
|
|
|
|
|
transition: none;
|
|
|
|
|
}
|
2013-06-06 05:28:50 +00:00
|
|
|
|
feat(ngAnimate): complete rewrite of animations
- ngAnimate directive is gone and was replaced with class based animations/transitions
- support for triggering animations on css class additions and removals
- done callback was added to all animation apis
- $animation and $animator where merged into a single $animate service with api:
- $animate.enter(element, parent, after, done);
- $animate.leave(element, done);
- $animate.move(element, parent, after, done);
- $animate.addClass(element, className, done);
- $animate.removeClass(element, className, done);
BREAKING CHANGE: too many things changed, we'll write up a separate doc with migration instructions
2013-06-18 17:59:57 +00:00
|
|
|
.foldout.ng-enter,
|
|
|
|
|
.foldout.ng-hide-add,
|
|
|
|
|
.foldout.ng-hide-remove {
|
2013-06-06 05:28:50 +00:00
|
|
|
-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;
|
|
|
|
|
}
|
|
|
|
|
|
feat(ngAnimate): complete rewrite of animations
- ngAnimate directive is gone and was replaced with class based animations/transitions
- support for triggering animations on css class additions and removals
- done callback was added to all animation apis
- $animation and $animator where merged into a single $animate service with api:
- $animate.enter(element, parent, after, done);
- $animate.leave(element, done);
- $animate.move(element, parent, after, done);
- $animate.addClass(element, className, done);
- $animate.removeClass(element, className, done);
BREAKING CHANGE: too many things changed, we'll write up a separate doc with migration instructions
2013-06-18 17:59:57 +00:00
|
|
|
.foldout.ng-hide-remove,
|
|
|
|
|
.foldout.ng-enter {
|
2013-06-06 05:28:50 +00:00
|
|
|
opacity:0;
|
|
|
|
|
}
|
|
|
|
|
|
feat(ngAnimate): complete rewrite of animations
- ngAnimate directive is gone and was replaced with class based animations/transitions
- support for triggering animations on css class additions and removals
- done callback was added to all animation apis
- $animation and $animator where merged into a single $animate service with api:
- $animate.enter(element, parent, after, done);
- $animate.leave(element, done);
- $animate.move(element, parent, after, done);
- $animate.addClass(element, className, done);
- $animate.removeClass(element, className, done);
BREAKING CHANGE: too many things changed, we'll write up a separate doc with migration instructions
2013-06-18 17:59:57 +00:00
|
|
|
.foldout.ng-hide-remove.ng-hide-remove-active,
|
|
|
|
|
.foldout.ng-enter.ng-enter-active {
|
2013-06-06 05:28:50 +00:00
|
|
|
opacity:1;
|
|
|
|
|
}
|
|
|
|
|
|
feat(ngAnimate): complete rewrite of animations
- ngAnimate directive is gone and was replaced with class based animations/transitions
- support for triggering animations on css class additions and removals
- done callback was added to all animation apis
- $animation and $animator where merged into a single $animate service with api:
- $animate.enter(element, parent, after, done);
- $animate.leave(element, done);
- $animate.move(element, parent, after, done);
- $animate.addClass(element, className, done);
- $animate.removeClass(element, className, done);
BREAKING CHANGE: too many things changed, we'll write up a separate doc with migration instructions
2013-06-18 17:59:57 +00:00
|
|
|
.foldout.ng-hide-add {
|
2013-06-06 05:28:50 +00:00
|
|
|
opacity:1;
|
|
|
|
|
}
|
|
|
|
|
|
feat(ngAnimate): complete rewrite of animations
- ngAnimate directive is gone and was replaced with class based animations/transitions
- support for triggering animations on css class additions and removals
- done callback was added to all animation apis
- $animation and $animator where merged into a single $animate service with api:
- $animate.enter(element, parent, after, done);
- $animate.leave(element, done);
- $animate.move(element, parent, after, done);
- $animate.addClass(element, className, done);
- $animate.removeClass(element, className, done);
BREAKING CHANGE: too many things changed, we'll write up a separate doc with migration instructions
2013-06-18 17:59:57 +00:00
|
|
|
.foldout.ng-hide-add.ng-hide-active {
|
2013-06-06 05:28:50 +00:00
|
|
|
opacity:0;
|
|
|
|
|
}
|