PluginProbe ʕ •ᴥ•ʔ
WP All Export – Drag & Drop Export to Any Custom CSV, XML & Excel / 1.2.2
WP All Export – Drag & Drop Export to Any Custom CSV, XML & Excel v1.2.2
trunk 0.9.0 0.9.1 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 1.1.0 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.2.0 1.2.1 1.2.10 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.7 1.3.8 1.3.9 1.4.0 1.4.1 1.4.10 1.4.11 1.4.12 1.4.13 1.4.14 1.4.15 1.4.2 1.4.3 1.4.4 1.4.5 1.4.6 1.4.7 1.4.8 1.4.9 1.5.0
wp-all-export / frontend / src / common / mapping / mapping.scss
wp-all-export / frontend / src / common / mapping Last commit date
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 }