blob: ee2710442fa0ca5a65abe9d9cae48f8456f78665 [file] [log] [blame]
Matteo Scandoloc88bb9f2016-04-25 10:31:22 -07001@import '../../../styles/animations.scss';
2
Matteo Scandoloe53ee382016-04-25 10:11:56 -07003xos-table {
Matteo Scandoloc88bb9f2016-04-25 10:31:22 -07004
5 tr.ng-move,
6 tr.ng-enter,
7 tr.ng-leave {
8 transition:all linear 0.5s;
9 }
10
11 tr.ng-leave.ng-leave-active,
12 tr.ng-move,
13 tr.ng-enter {
14 opacity:0;
15 animation: 0.5s slideOutRight ease-in-out;
16 }
17
18 tr.ng-leave,
19 tr.ng-move.ng-move-active,
20 tr.ng-enter.ng-enter-active {
21 opacity:1;
22 animation: 0.5s slideInRight ease-in-out;
23 }
Matteo Scandoloe53ee382016-04-25 10:11:56 -070024}