@bpmn-io/form-js-playground 0.9.9 → 0.10.0-alpha.0

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,36 +1,4 @@
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 {
1
+ .fjs-pgl-root {
34
2
  --color-button-hover: var(--color-grey-225-10-95);
35
3
 
36
4
  --color-section-border: var(--color-grey-225-10-55);
@@ -59,7 +27,7 @@
59
27
  }
60
28
 
61
29
  .fjs-pgl-main {
62
- width: 100%;
30
+ width: calc(100% - 111px);
63
31
  height: 100%;
64
32
 
65
33
  display: grid;
@@ -76,7 +44,7 @@
76
44
  */
77
45
  .fjs-pgl-palette-container {
78
46
  height: 100%;
79
- width: auto;
47
+ width: 110px;
80
48
  background-color: var(--color-palette-container-background);
81
49
  border-right: solid 1px var(--color-palette-container-border);
82
50
  overflow-y: scroll;
@@ -258,3 +226,36 @@
258
226
  width: 100%;
259
227
  height: 100%;
260
228
  }
229
+ /**
230
+ * file-drop.css
231
+ */
232
+ .drop-overlay {
233
+ position: fixed;
234
+ top: 0;
235
+ left: 0;
236
+ bottom: 0;
237
+ right: 0;
238
+
239
+ padding: 50px;
240
+
241
+ background: rgba(255, 255, 255, .9);
242
+
243
+ z-index: 1000;
244
+ }
245
+
246
+ .drop-overlay .box {
247
+ text-align: center;
248
+ border: dashed 4px #CCC;
249
+ height: 100%;
250
+ width: 100%;
251
+ display: table;
252
+ }
253
+
254
+ .drop-overlay .label {
255
+ font-size: 26px;
256
+ color: #888;
257
+ margin: auto;
258
+
259
+ display: table-cell;
260
+ vertical-align: middle;
261
+ }