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