mapping.controller.js
7 years ago
mapping.directive.js
7 years ago
mapping.scss
7 years ago
mapping.tpl.html
7 years ago
mapping.scss
40 lines
| 1 | .wpallexport-mappings { |
| 2 | a.add{ |
| 3 | display:block; |
| 4 | background: url('../static/img/add.png') no-repeat; |
| 5 | background-position-y: 3px; |
| 6 | padding-left:15px; |
| 7 | margin-top:10px; |
| 8 | } |
| 9 | |
| 10 | a.delete { |
| 11 | background: url('../static/img/trash.png') no-repeat; |
| 12 | width:19px; |
| 13 | height:22px; |
| 14 | display: inline-block; |
| 15 | position: relative; |
| 16 | top:5px; |
| 17 | } |
| 18 | |
| 19 | .fade-in-out { |
| 20 | } |
| 21 | |
| 22 | .fade-in-out.ng-move, |
| 23 | .fade-in-out.ng-enter, |
| 24 | .fade-in-out.ng-leave { |
| 25 | -webkit-transition:all linear 0.15s; |
| 26 | transition:all linear 0.15s; |
| 27 | } |
| 28 | |
| 29 | .fade-in-out.ng-leave.ng-leave-active, |
| 30 | .fade-in-out.ng-move, |
| 31 | .fade-in-out.ng-enter { |
| 32 | opacity:0; |
| 33 | } |
| 34 | |
| 35 | .fade-in-out.ng-leave, |
| 36 | .fade-in-out.ng-move.ng-move-active, |
| 37 | .fade-in-out.ng-enter.ng-enter-active { |
| 38 | opacity:1; |
| 39 | } |
| 40 | } |