@bpmn-io/form-js-playground 0.9.0 → 0.9.3
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.
- package/dist/assets/form-js-playground.css +33 -33
- package/dist/form-playground.umd.js +4455 -7109
- package/package.json +4 -4
|
@@ -1,4 +1,36 @@
|
|
|
1
|
-
|
|
1
|
+
/**
|
|
2
|
+
* file-drop.css
|
|
3
|
+
*/
|
|
4
|
+
.drop-overlay {
|
|
5
|
+
position: fixed;
|
|
6
|
+
top: 0;
|
|
7
|
+
left: 0;
|
|
8
|
+
bottom: 0;
|
|
9
|
+
right: 0;
|
|
10
|
+
|
|
11
|
+
padding: 50px;
|
|
12
|
+
|
|
13
|
+
background: rgba(255, 255, 255, .9);
|
|
14
|
+
|
|
15
|
+
z-index: 1000;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.drop-overlay .box {
|
|
19
|
+
text-align: center;
|
|
20
|
+
border: dashed 4px #CCC;
|
|
21
|
+
height: 100%;
|
|
22
|
+
width: 100%;
|
|
23
|
+
display: table;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.drop-overlay .label {
|
|
27
|
+
font-size: 26px;
|
|
28
|
+
color: #888;
|
|
29
|
+
margin: auto;
|
|
30
|
+
|
|
31
|
+
display: table-cell;
|
|
32
|
+
vertical-align: middle;
|
|
33
|
+
}.fjs-pgl-root {
|
|
2
34
|
--color-button-hover: var(--color-grey-225-10-95);
|
|
3
35
|
|
|
4
36
|
--color-section-border: var(--color-grey-225-10-55);
|
|
@@ -221,36 +253,4 @@
|
|
|
221
253
|
.fjs-pgl-parent {
|
|
222
254
|
width: 100%;
|
|
223
255
|
height: 100%;
|
|
224
|
-
}/**
|
|
225
|
-
* file-drop.css
|
|
226
|
-
*/
|
|
227
|
-
.drop-overlay {
|
|
228
|
-
position: fixed;
|
|
229
|
-
top: 0;
|
|
230
|
-
left: 0;
|
|
231
|
-
bottom: 0;
|
|
232
|
-
right: 0;
|
|
233
|
-
|
|
234
|
-
padding: 50px;
|
|
235
|
-
|
|
236
|
-
background: rgba(255, 255, 255, .9);
|
|
237
|
-
|
|
238
|
-
z-index: 1000;
|
|
239
|
-
}
|
|
240
|
-
|
|
241
|
-
.drop-overlay .box {
|
|
242
|
-
text-align: center;
|
|
243
|
-
border: dashed 4px #CCC;
|
|
244
|
-
height: 100%;
|
|
245
|
-
width: 100%;
|
|
246
|
-
display: table;
|
|
247
|
-
}
|
|
248
|
-
|
|
249
|
-
.drop-overlay .label {
|
|
250
|
-
font-size: 26px;
|
|
251
|
-
color: #888;
|
|
252
|
-
margin: auto;
|
|
253
|
-
|
|
254
|
-
display: table-cell;
|
|
255
|
-
vertical-align: middle;
|
|
256
256
|
}
|