blob: cf1a30d347fe9441cfe83e28f855fe8341efaea9 [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 Scandolo9bb3a952016-04-25 14:24:18 -07004
5 tr {
6 font-weight: bold;
7 }
Matteo Scandoloc88bb9f2016-04-25 10:31:22 -07008
9 tr.ng-move,
10 tr.ng-enter,
11 tr.ng-leave {
12 transition:all linear 0.5s;
13 }
14
15 tr.ng-leave.ng-leave-active,
16 tr.ng-move,
17 tr.ng-enter {
18 opacity:0;
19 animation: 0.5s slideOutRight ease-in-out;
20 }
21
22 tr.ng-leave,
23 tr.ng-move.ng-move-active,
24 tr.ng-enter.ng-enter-active {
25 opacity:1;
26 animation: 0.5s slideInRight ease-in-out;
27 }
Matteo Scandoloe53ee382016-04-25 10:11:56 -070028}