Focus different text field for ADB Keys.

Try animating repeats.
This commit is contained in:
Gunther Brunner
2014-09-25 23:46:55 +09:00
parent d611a0317e
commit c1e165ec1a
4 changed files with 28 additions and 56 deletions

View File

@@ -30,3 +30,23 @@
display: inline-block;
}
.animate-repeat.ng-move,
.animate-repeat.ng-enter,
.animate-repeat.ng-leave {
-webkit-transition: all ease-out 150ms;
transition: all ease-out 150ms;
}
.animate-repeat.ng-leave.ng-leave-active,
.animate-repeat.ng-move,
.animate-repeat.ng-enter {
opacity: 0;
max-height: 0;
}
.animate-repeat.ng-leave,
.animate-repeat.ng-move.ng-move-active,
.animate-repeat.ng-enter.ng-enter-active {
opacity: 1;
max-height: 100px;
}