blob: 70399a9f2658c03211890844c6cfbbbeef2e2156 [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 Scandolo0cd52c12016-05-06 11:39:56 -070026
27 td dl {
28 margin-bottom: 0;
29
30 dt {
31 width: 50px !important;
32 }
33
34 dd {
35 margin-left: 60px !important;
36 }
37 }
Matteo Scandolo90ed0642016-04-25 10:11:56 -070038}