blob: d9830d8a2ebe8232127913ad17335851df5616ab [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 {
Matteo Scandoloa7ad4992016-05-09 15:27:47 -070031 width: auto !important;
32 margin-right: 10px;
33 }
34
35 dt:after {
36 /*display: block;*/
37 content: ':';
Matteo Scandolo0cd52c12016-05-06 11:39:56 -070038 }
39
40 dd {
Matteo Scandoloa7ad4992016-05-09 15:27:47 -070041 margin-left: 0 !important;
Matteo Scandolo0cd52c12016-05-06 11:39:56 -070042 }
43 }
Matteo Scandolo90ed0642016-04-25 10:11:56 -070044}