inviton-powerduck 0.0.218 → 0.0.220

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,344 +1,344 @@
1
- /*! Jcrop.min.css v2.0.4 - build: 20151117
2
- * Copyright 2008-2015 Tapmodo Interactive LLC
3
- * Free software under MIT License
4
- **/
5
-
6
- .jcrop-active {
7
- direction: ltr;
8
- text-align: left;
9
- -ms-touch-action: none;
10
- }
11
- .jcrop-dragging {
12
- -moz-user-select: none;
13
- -webkit-user-select: none;
14
- -ms-user-select: none;
15
- user-select: none;
16
- }
17
- .jcrop-selection {
18
- z-index: 2;
19
- }
20
- .jcrop-selection.jcrop-current {
21
- z-index: 4;
22
- }
23
- .jcrop-border {
24
- background: #fff url(Jcrop.gif);
25
- line-height: 1px !important;
26
- font-size: 0 !important;
27
- overflow: hidden;
28
- position: absolute;
29
- filter: alpha(opacity=50) !important;
30
- opacity: 0.5 !important;
31
- }
32
- .jcrop-border.ord-w,
33
- .jcrop-border.ord-e,
34
- .jcrop-border.ord-n {
35
- top: 0;
36
- }
37
- .jcrop-border.ord-n,
38
- .jcrop-border.ord-s {
39
- width: 100%;
40
- height: 1px !important;
41
- }
42
- .jcrop-border.ord-w,
43
- .jcrop-border.ord-e {
44
- height: 100%;
45
- width: 1px !important;
46
- }
47
- .jcrop-border.ord-e {
48
- right: -1px;
49
- }
50
- .jcrop-border.ord-n {
51
- top: -1px;
52
- }
53
- .jcrop-border.ord-w {
54
- left: -1px;
55
- }
56
- .jcrop-border.ord-s {
57
- bottom: -1px;
58
- }
59
- .jcrop-selection {
60
- position: absolute;
61
- }
62
- .jcrop-box {
63
- z-index: 2;
64
- display: block;
65
- background: 0 0;
66
- border: 0;
67
- padding: 0;
68
- margin: 0;
69
- font-size: 0;
70
- }
71
- .jcrop-box:hover {
72
- background: 0 0;
73
- }
74
- .jcrop-box:active {
75
- background: 0 0;
76
- }
77
- .jcrop-box:focus {
78
- outline: 1px rgba(128, 128, 128, 0.65) dotted;
79
- }
80
- .jcrop-active,
81
- .jcrop-box {
82
- position: relative;
83
- }
84
- .jcrop-box {
85
- width: 100%;
86
- height: 100%;
87
- cursor: move;
88
- }
89
- .jcrop-handle {
90
- z-index: 4;
91
- box-sizing: border-box;
92
- background-color: rgba(49, 28, 28, 0.58);
93
- border: 1px #eee solid;
94
- width: 9px;
95
- height: 9px;
96
- font-size: 0;
97
- position: absolute;
98
- filter: alpha(opacity=80) !important;
99
- opacity: 0.8 !important;
100
- }
101
- .jcrop-handle.ord-n {
102
- left: 50%;
103
- margin-left: -5px;
104
- margin-top: -5px;
105
- top: 0;
106
- cursor: n-resize;
107
- }
108
- .jcrop-handle.ord-s {
109
- bottom: 0;
110
- left: 50%;
111
- margin-bottom: -5px;
112
- margin-left: -5px;
113
- cursor: s-resize;
114
- }
115
- .jcrop-handle.ord-e {
116
- margin-right: -5px;
117
- margin-top: -5px;
118
- right: 0;
119
- top: 50%;
120
- cursor: e-resize;
121
- }
122
- .jcrop-handle.ord-w {
123
- left: 0;
124
- margin-left: -5px;
125
- margin-top: -5px;
126
- top: 50%;
127
- cursor: w-resize;
128
- }
129
- .jcrop-handle.ord-nw {
130
- left: 0;
131
- margin-left: -5px;
132
- margin-top: -5px;
133
- top: 0;
134
- cursor: nw-resize;
135
- }
136
- .jcrop-handle.ord-ne {
137
- margin-right: -5px;
138
- margin-top: -5px;
139
- right: 0;
140
- top: 0;
141
- cursor: ne-resize;
142
- }
143
- .jcrop-handle.ord-se {
144
- bottom: 0;
145
- margin-bottom: -5px;
146
- margin-right: -5px;
147
- right: 0;
148
- cursor: se-resize;
149
- }
150
- .jcrop-handle.ord-sw {
151
- bottom: 0;
152
- left: 0;
153
- margin-bottom: -5px;
154
- margin-left: -5px;
155
- cursor: sw-resize;
156
- }
157
- .jcrop-touch .jcrop-handle {
158
- z-index: 4;
159
- box-sizing: border-box;
160
- background-color: rgba(49, 28, 28, 0.58);
161
- border: 1px #eee solid;
162
- width: 18px;
163
- height: 18px;
164
- font-size: 0;
165
- position: absolute;
166
- filter: alpha(opacity=80) !important;
167
- opacity: 0.8 !important;
168
- }
169
- .jcrop-touch .jcrop-handle.ord-n {
170
- left: 50%;
171
- margin-left: -10px;
172
- margin-top: -10px;
173
- top: 0;
174
- cursor: n-resize;
175
- }
176
- .jcrop-touch .jcrop-handle.ord-s {
177
- bottom: 0;
178
- left: 50%;
179
- margin-bottom: -10px;
180
- margin-left: -10px;
181
- cursor: s-resize;
182
- }
183
- .jcrop-touch .jcrop-handle.ord-e {
184
- margin-right: -10px;
185
- margin-top: -10px;
186
- right: 0;
187
- top: 50%;
188
- cursor: e-resize;
189
- }
190
- .jcrop-touch .jcrop-handle.ord-w {
191
- left: 0;
192
- margin-left: -10px;
193
- margin-top: -10px;
194
- top: 50%;
195
- cursor: w-resize;
196
- }
197
- .jcrop-touch .jcrop-handle.ord-nw {
198
- left: 0;
199
- margin-left: -10px;
200
- margin-top: -10px;
201
- top: 0;
202
- cursor: nw-resize;
203
- }
204
- .jcrop-touch .jcrop-handle.ord-ne {
205
- margin-right: -10px;
206
- margin-top: -10px;
207
- right: 0;
208
- top: 0;
209
- cursor: ne-resize;
210
- }
211
- .jcrop-touch .jcrop-handle.ord-se {
212
- bottom: 0;
213
- margin-bottom: -10px;
214
- margin-right: -10px;
215
- right: 0;
216
- cursor: se-resize;
217
- }
218
- .jcrop-touch .jcrop-handle.ord-sw {
219
- bottom: 0;
220
- left: 0;
221
- margin-bottom: -10px;
222
- margin-left: -10px;
223
- cursor: sw-resize;
224
- }
225
- .jcrop-dragbar {
226
- font-size: 0;
227
- position: absolute;
228
- }
229
- .jcrop-dragbar.ord-n,
230
- .jcrop-dragbar.ord-s {
231
- height: 9px !important;
232
- width: 100%;
233
- }
234
- .jcrop-dragbar.ord-e,
235
- .jcrop-dragbar.ord-w {
236
- top: 0;
237
- height: 100%;
238
- width: 9px !important;
239
- }
240
- .jcrop-dragbar.ord-n {
241
- margin-top: -5px;
242
- cursor: n-resize;
243
- top: 0;
244
- }
245
- .jcrop-dragbar.ord-s {
246
- bottom: 0;
247
- margin-bottom: -5px;
248
- cursor: s-resize;
249
- }
250
- .jcrop-dragbar.ord-e {
251
- margin-right: -5px;
252
- right: 0;
253
- cursor: e-resize;
254
- }
255
- .jcrop-dragbar.ord-w {
256
- margin-left: -5px;
257
- cursor: w-resize;
258
- }
259
- .jcrop-shades {
260
- position: relative;
261
- top: 0;
262
- left: 0;
263
- }
264
- .jcrop-shades div {
265
- cursor: crosshair;
266
- }
267
- .jcrop-noresize .jcrop-dragbar,
268
- .jcrop-noresize .jcrop-handle {
269
- display: none;
270
- }
271
- .jcrop-selection.jcrop-nodrag .jcrop-box,
272
- .jcrop-nodrag .jcrop-shades div {
273
- cursor: default;
274
- }
275
- .jcrop-light .jcrop-border {
276
- background: #fff;
277
- filter: alpha(opacity=70) !important;
278
- opacity: 0.7 !important;
279
- }
280
- .jcrop-light .jcrop-handle {
281
- background-color: #000;
282
- border-color: #fff;
283
- }
284
- .jcrop-dark .jcrop-border {
285
- background: #000;
286
- filter: alpha(opacity=70) !important;
287
- opacity: 0.7 !important;
288
- }
289
- .jcrop-dark .jcrop-handle {
290
- background-color: #fff;
291
- border-color: #000;
292
- }
293
- .solid-line .jcrop-border {
294
- background: #fff;
295
- }
296
- .jcrop-thumb {
297
- position: absolute;
298
- overflow: hidden;
299
- z-index: 5;
300
- }
301
- .jcrop-active img,
302
- .jcrop-thumb img,
303
- .jcrop-thumb canvas {
304
- min-width: none;
305
- min-height: none;
306
- max-width: none;
307
- max-height: none;
308
- }
309
- .jcrop-hl-active .jcrop-border {
310
- filter: alpha(opacity=20) !important;
311
- opacity: 0.2 !important;
312
- }
313
- .jcrop-hl-active .jcrop-handle {
314
- filter: alpha(opacity=10) !important;
315
- opacity: 0.1 !important;
316
- }
317
- .jcrop-hl-active .jcrop-selection:hover {
318
- }
319
- .jcrop-hl-active .jcrop-selection:hover .jcrop-border {
320
- background-color: #ccc;
321
- filter: alpha(opacity=50) !important;
322
- opacity: 0.5 !important;
323
- }
324
- .jcrop-hl-active .jcrop-selection.jcrop-current .jcrop-border {
325
- background: gray url(Jcrop.gif);
326
- opacity: 0.35 !important;
327
- filter: alpha(opacity=35) !important;
328
- }
329
- .jcrop-hl-active .jcrop-selection.jcrop-current .jcrop-handle {
330
- filter: alpha(opacity=30) !important;
331
- opacity: 0.3 !important;
332
- }
333
- .jcrop-hl-active .jcrop-selection.jcrop-focus .jcrop-border {
334
- background: url(Jcrop.gif);
335
- opacity: 0.65 !important;
336
- filter: alpha(opacity=65) !important;
337
- }
338
- .jcrop-hl-active .jcrop-selection.jcrop-focus .jcrop-handle {
339
- filter: alpha(opacity=60) !important;
340
- opacity: 0.6 !important;
341
- }
342
- button.jcrop-box {
343
- background: 0 0;
344
- }
1
+ /*! Jcrop.min.css v2.0.4 - build: 20151117
2
+ * Copyright 2008-2015 Tapmodo Interactive LLC
3
+ * Free software under MIT License
4
+ **/
5
+
6
+ .jcrop-active {
7
+ direction: ltr;
8
+ text-align: left;
9
+ -ms-touch-action: none;
10
+ }
11
+ .jcrop-dragging {
12
+ -moz-user-select: none;
13
+ -webkit-user-select: none;
14
+ -ms-user-select: none;
15
+ user-select: none;
16
+ }
17
+ .jcrop-selection {
18
+ z-index: 2;
19
+ }
20
+ .jcrop-selection.jcrop-current {
21
+ z-index: 4;
22
+ }
23
+ .jcrop-border {
24
+ background: #fff url(Jcrop.gif);
25
+ line-height: 1px !important;
26
+ font-size: 0 !important;
27
+ overflow: hidden;
28
+ position: absolute;
29
+ filter: alpha(opacity=50) !important;
30
+ opacity: 0.5 !important;
31
+ }
32
+ .jcrop-border.ord-w,
33
+ .jcrop-border.ord-e,
34
+ .jcrop-border.ord-n {
35
+ top: 0;
36
+ }
37
+ .jcrop-border.ord-n,
38
+ .jcrop-border.ord-s {
39
+ width: 100%;
40
+ height: 1px !important;
41
+ }
42
+ .jcrop-border.ord-w,
43
+ .jcrop-border.ord-e {
44
+ height: 100%;
45
+ width: 1px !important;
46
+ }
47
+ .jcrop-border.ord-e {
48
+ right: -1px;
49
+ }
50
+ .jcrop-border.ord-n {
51
+ top: -1px;
52
+ }
53
+ .jcrop-border.ord-w {
54
+ left: -1px;
55
+ }
56
+ .jcrop-border.ord-s {
57
+ bottom: -1px;
58
+ }
59
+ .jcrop-selection {
60
+ position: absolute;
61
+ }
62
+ .jcrop-box {
63
+ z-index: 2;
64
+ display: block;
65
+ background: 0 0;
66
+ border: 0;
67
+ padding: 0;
68
+ margin: 0;
69
+ font-size: 0;
70
+ }
71
+ .jcrop-box:hover {
72
+ background: 0 0;
73
+ }
74
+ .jcrop-box:active {
75
+ background: 0 0;
76
+ }
77
+ .jcrop-box:focus {
78
+ outline: 1px rgba(128, 128, 128, 0.65) dotted;
79
+ }
80
+ .jcrop-active,
81
+ .jcrop-box {
82
+ position: relative;
83
+ }
84
+ .jcrop-box {
85
+ width: 100%;
86
+ height: 100%;
87
+ cursor: move;
88
+ }
89
+ .jcrop-handle {
90
+ z-index: 4;
91
+ box-sizing: border-box;
92
+ background-color: rgba(49, 28, 28, 0.58);
93
+ border: 1px #eee solid;
94
+ width: 9px;
95
+ height: 9px;
96
+ font-size: 0;
97
+ position: absolute;
98
+ filter: alpha(opacity=80) !important;
99
+ opacity: 0.8 !important;
100
+ }
101
+ .jcrop-handle.ord-n {
102
+ left: 50%;
103
+ margin-left: -5px;
104
+ margin-top: -5px;
105
+ top: 0;
106
+ cursor: n-resize;
107
+ }
108
+ .jcrop-handle.ord-s {
109
+ bottom: 0;
110
+ left: 50%;
111
+ margin-bottom: -5px;
112
+ margin-left: -5px;
113
+ cursor: s-resize;
114
+ }
115
+ .jcrop-handle.ord-e {
116
+ margin-right: -5px;
117
+ margin-top: -5px;
118
+ right: 0;
119
+ top: 50%;
120
+ cursor: e-resize;
121
+ }
122
+ .jcrop-handle.ord-w {
123
+ left: 0;
124
+ margin-left: -5px;
125
+ margin-top: -5px;
126
+ top: 50%;
127
+ cursor: w-resize;
128
+ }
129
+ .jcrop-handle.ord-nw {
130
+ left: 0;
131
+ margin-left: -5px;
132
+ margin-top: -5px;
133
+ top: 0;
134
+ cursor: nw-resize;
135
+ }
136
+ .jcrop-handle.ord-ne {
137
+ margin-right: -5px;
138
+ margin-top: -5px;
139
+ right: 0;
140
+ top: 0;
141
+ cursor: ne-resize;
142
+ }
143
+ .jcrop-handle.ord-se {
144
+ bottom: 0;
145
+ margin-bottom: -5px;
146
+ margin-right: -5px;
147
+ right: 0;
148
+ cursor: se-resize;
149
+ }
150
+ .jcrop-handle.ord-sw {
151
+ bottom: 0;
152
+ left: 0;
153
+ margin-bottom: -5px;
154
+ margin-left: -5px;
155
+ cursor: sw-resize;
156
+ }
157
+ .jcrop-touch .jcrop-handle {
158
+ z-index: 4;
159
+ box-sizing: border-box;
160
+ background-color: rgba(49, 28, 28, 0.58);
161
+ border: 1px #eee solid;
162
+ width: 18px;
163
+ height: 18px;
164
+ font-size: 0;
165
+ position: absolute;
166
+ filter: alpha(opacity=80) !important;
167
+ opacity: 0.8 !important;
168
+ }
169
+ .jcrop-touch .jcrop-handle.ord-n {
170
+ left: 50%;
171
+ margin-left: -10px;
172
+ margin-top: -10px;
173
+ top: 0;
174
+ cursor: n-resize;
175
+ }
176
+ .jcrop-touch .jcrop-handle.ord-s {
177
+ bottom: 0;
178
+ left: 50%;
179
+ margin-bottom: -10px;
180
+ margin-left: -10px;
181
+ cursor: s-resize;
182
+ }
183
+ .jcrop-touch .jcrop-handle.ord-e {
184
+ margin-right: -10px;
185
+ margin-top: -10px;
186
+ right: 0;
187
+ top: 50%;
188
+ cursor: e-resize;
189
+ }
190
+ .jcrop-touch .jcrop-handle.ord-w {
191
+ left: 0;
192
+ margin-left: -10px;
193
+ margin-top: -10px;
194
+ top: 50%;
195
+ cursor: w-resize;
196
+ }
197
+ .jcrop-touch .jcrop-handle.ord-nw {
198
+ left: 0;
199
+ margin-left: -10px;
200
+ margin-top: -10px;
201
+ top: 0;
202
+ cursor: nw-resize;
203
+ }
204
+ .jcrop-touch .jcrop-handle.ord-ne {
205
+ margin-right: -10px;
206
+ margin-top: -10px;
207
+ right: 0;
208
+ top: 0;
209
+ cursor: ne-resize;
210
+ }
211
+ .jcrop-touch .jcrop-handle.ord-se {
212
+ bottom: 0;
213
+ margin-bottom: -10px;
214
+ margin-right: -10px;
215
+ right: 0;
216
+ cursor: se-resize;
217
+ }
218
+ .jcrop-touch .jcrop-handle.ord-sw {
219
+ bottom: 0;
220
+ left: 0;
221
+ margin-bottom: -10px;
222
+ margin-left: -10px;
223
+ cursor: sw-resize;
224
+ }
225
+ .jcrop-dragbar {
226
+ font-size: 0;
227
+ position: absolute;
228
+ }
229
+ .jcrop-dragbar.ord-n,
230
+ .jcrop-dragbar.ord-s {
231
+ height: 9px !important;
232
+ width: 100%;
233
+ }
234
+ .jcrop-dragbar.ord-e,
235
+ .jcrop-dragbar.ord-w {
236
+ top: 0;
237
+ height: 100%;
238
+ width: 9px !important;
239
+ }
240
+ .jcrop-dragbar.ord-n {
241
+ margin-top: -5px;
242
+ cursor: n-resize;
243
+ top: 0;
244
+ }
245
+ .jcrop-dragbar.ord-s {
246
+ bottom: 0;
247
+ margin-bottom: -5px;
248
+ cursor: s-resize;
249
+ }
250
+ .jcrop-dragbar.ord-e {
251
+ margin-right: -5px;
252
+ right: 0;
253
+ cursor: e-resize;
254
+ }
255
+ .jcrop-dragbar.ord-w {
256
+ margin-left: -5px;
257
+ cursor: w-resize;
258
+ }
259
+ .jcrop-shades {
260
+ position: relative;
261
+ top: 0;
262
+ left: 0;
263
+ }
264
+ .jcrop-shades div {
265
+ cursor: crosshair;
266
+ }
267
+ .jcrop-noresize .jcrop-dragbar,
268
+ .jcrop-noresize .jcrop-handle {
269
+ display: none;
270
+ }
271
+ .jcrop-selection.jcrop-nodrag .jcrop-box,
272
+ .jcrop-nodrag .jcrop-shades div {
273
+ cursor: default;
274
+ }
275
+ .jcrop-light .jcrop-border {
276
+ background: #fff;
277
+ filter: alpha(opacity=70) !important;
278
+ opacity: 0.7 !important;
279
+ }
280
+ .jcrop-light .jcrop-handle {
281
+ background-color: #000;
282
+ border-color: #fff;
283
+ }
284
+ .jcrop-dark .jcrop-border {
285
+ background: #000;
286
+ filter: alpha(opacity=70) !important;
287
+ opacity: 0.7 !important;
288
+ }
289
+ .jcrop-dark .jcrop-handle {
290
+ background-color: #fff;
291
+ border-color: #000;
292
+ }
293
+ .solid-line .jcrop-border {
294
+ background: #fff;
295
+ }
296
+ .jcrop-thumb {
297
+ position: absolute;
298
+ overflow: hidden;
299
+ z-index: 5;
300
+ }
301
+ .jcrop-active img,
302
+ .jcrop-thumb img,
303
+ .jcrop-thumb canvas {
304
+ min-width: none;
305
+ min-height: none;
306
+ max-width: none;
307
+ max-height: none;
308
+ }
309
+ .jcrop-hl-active .jcrop-border {
310
+ filter: alpha(opacity=20) !important;
311
+ opacity: 0.2 !important;
312
+ }
313
+ .jcrop-hl-active .jcrop-handle {
314
+ filter: alpha(opacity=10) !important;
315
+ opacity: 0.1 !important;
316
+ }
317
+ .jcrop-hl-active .jcrop-selection:hover {
318
+ }
319
+ .jcrop-hl-active .jcrop-selection:hover .jcrop-border {
320
+ background-color: #ccc;
321
+ filter: alpha(opacity=50) !important;
322
+ opacity: 0.5 !important;
323
+ }
324
+ .jcrop-hl-active .jcrop-selection.jcrop-current .jcrop-border {
325
+ background: gray url(Jcrop.gif);
326
+ opacity: 0.35 !important;
327
+ filter: alpha(opacity=35) !important;
328
+ }
329
+ .jcrop-hl-active .jcrop-selection.jcrop-current .jcrop-handle {
330
+ filter: alpha(opacity=30) !important;
331
+ opacity: 0.3 !important;
332
+ }
333
+ .jcrop-hl-active .jcrop-selection.jcrop-focus .jcrop-border {
334
+ background: url(Jcrop.gif);
335
+ opacity: 0.65 !important;
336
+ filter: alpha(opacity=65) !important;
337
+ }
338
+ .jcrop-hl-active .jcrop-selection.jcrop-focus .jcrop-handle {
339
+ filter: alpha(opacity=60) !important;
340
+ opacity: 0.6 !important;
341
+ }
342
+ button.jcrop-box {
343
+ background: 0 0;
344
+ }