@bpmn-io/form-js-playground 0.10.0-alpha.1 → 0.10.0-alpha.2

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);
@@ -215,11 +183,17 @@
215
183
  box-sizing: border-box;
216
184
  border: none;
217
185
  border-radius: 0;
186
+ position: relative;
218
187
  }
219
188
 
220
189
  .fjs-pgl-text-container > .cm-editor {
221
190
  font-size: .9em;
222
191
  height: 100%;
192
+ position: absolute !important;
193
+ top: 0;
194
+ left: 0;
195
+ right: 0;
196
+ bottom: 0;
223
197
  }
224
198
 
225
199
  .fjs-pgl-text-container > .cm-editor > .cm-scroller {
@@ -258,3 +232,36 @@
258
232
  width: 100%;
259
233
  height: 100%;
260
234
  }
235
+ /**
236
+ * file-drop.css
237
+ */
238
+ .drop-overlay {
239
+ position: fixed;
240
+ top: 0;
241
+ left: 0;
242
+ bottom: 0;
243
+ right: 0;
244
+
245
+ padding: 50px;
246
+
247
+ background: rgba(255, 255, 255, .9);
248
+
249
+ z-index: 1000;
250
+ }
251
+
252
+ .drop-overlay .box {
253
+ text-align: center;
254
+ border: dashed 4px #CCC;
255
+ height: 100%;
256
+ width: 100%;
257
+ display: table;
258
+ }
259
+
260
+ .drop-overlay .label {
261
+ font-size: 26px;
262
+ color: #888;
263
+ margin: auto;
264
+
265
+ display: table-cell;
266
+ vertical-align: middle;
267
+ }