Matteo Scandolo | a5d03d5 | 2016-07-21 11:35:46 -0700 | [diff] [blame^] | 1 | @import '../../../styles/animations.scss'; |
| 2 | |
| 3 | xos-table { |
| 4 | |
| 5 | display: block; |
| 6 | |
| 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 | } |
| 26 | |
| 27 | td dl { |
| 28 | margin-bottom: 0; |
| 29 | |
| 30 | dt { |
| 31 | width: auto !important; |
| 32 | margin-right: 10px; |
| 33 | } |
| 34 | |
| 35 | dt:after { |
| 36 | /*display: block;*/ |
| 37 | content: ':'; |
| 38 | } |
| 39 | |
| 40 | dd { |
| 41 | margin-left: 0 !important; |
| 42 | } |
| 43 | } |
| 44 | } |