@bpmn-io/properties-panel 0.4.0 → 0.4.1
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/CHANGELOG.md +4 -0
- package/assets/properties-panel.css +4 -54
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,10 @@ All notable changes to [`@bpmn-io/properties-panel`](https://github.com/bpmn-io/
|
|
|
6
6
|
|
|
7
7
|
___Note:__ Yet to be released changes appear here._
|
|
8
8
|
|
|
9
|
+
## 0.4.1
|
|
10
|
+
|
|
11
|
+
* `CHORE`: unbuild custom checkbox component ([#97](https://github.com/bpmn-io/properties-panel/pull/97))
|
|
12
|
+
|
|
9
13
|
## 0.4.0
|
|
10
14
|
|
|
11
15
|
* `FEAT`: add list entry ([#92](https://github.com/bpmn-io/properties-panel/issues/92))
|
|
@@ -292,63 +292,13 @@ textarea.bio-properties-panel-input,
|
|
|
292
292
|
|
|
293
293
|
.bio-properties-panel-input[type="checkbox"], .bio-properties-panel-input[type="radio"] {
|
|
294
294
|
margin: 0;
|
|
295
|
+
vertical-align: middle;
|
|
295
296
|
}
|
|
296
297
|
|
|
297
|
-
.bio-properties-panel-
|
|
298
|
-
.bio-properties-panel-input[type="radio"] + label::after {
|
|
299
|
-
-webkit-transform: scale(0);
|
|
300
|
-
-ms-transform: scale(0);
|
|
301
|
-
-o-transform: scale(0);
|
|
302
|
-
transform: scale(0);
|
|
303
|
-
}
|
|
304
|
-
|
|
305
|
-
.bio-properties-panel-input[type="checkbox"]:checked + label::after,
|
|
306
|
-
.bio-properties-panel-input[type="radio"]:checked + label::after {
|
|
307
|
-
-webkit-transform: scale(1);
|
|
308
|
-
-ms-transform: scale(1);
|
|
309
|
-
-o-transform: scale(1);
|
|
310
|
-
transform: scale(1);
|
|
311
|
-
}
|
|
312
|
-
|
|
313
|
-
.bio-properties-panel-checkbox {
|
|
314
|
-
margin-top: 12px;
|
|
315
|
-
margin-bottom: 6px;
|
|
316
|
-
}
|
|
317
|
-
|
|
318
|
-
.bio-properties-panel-checkbox .bio-properties-panel-input {
|
|
319
|
-
position: absolute;
|
|
320
|
-
opacity: 0;
|
|
321
|
-
z-index: -1;
|
|
322
|
-
}
|
|
323
|
-
|
|
324
|
-
.bio-properties-panel-checkbox .bio-properties-panel-label {
|
|
325
|
-
position: relative;
|
|
298
|
+
.bio-properties-panel-checkbox > .bio-properties-panel-label {
|
|
326
299
|
display: inline-block;
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
.bio-properties-panel-checkbox .bio-properties-panel-label::before,
|
|
331
|
-
.bio-properties-panel-checkbox .bio-properties-panel-label::after {
|
|
332
|
-
position: absolute;
|
|
333
|
-
top: 0;
|
|
334
|
-
left: 0;
|
|
335
|
-
display: block;
|
|
336
|
-
width: 16px;
|
|
337
|
-
height: 16px;
|
|
338
|
-
}
|
|
339
|
-
|
|
340
|
-
.bio-properties-panel-checkbox .bio-properties-panel-label::before {
|
|
341
|
-
content: " ";
|
|
342
|
-
border: 1px solid var(--color-input-border);
|
|
343
|
-
border-radius: 3px;
|
|
344
|
-
background-color:var(--color-000000-opacity-5);
|
|
345
|
-
}
|
|
346
|
-
|
|
347
|
-
.bio-properties-panel-checkbox .bio-properties-panel-label::after {
|
|
348
|
-
content: "\2714";
|
|
349
|
-
color: var(--color-text-base);
|
|
350
|
-
line-height: 1.5;
|
|
351
|
-
text-align: center;
|
|
300
|
+
margin-left: 4px;
|
|
301
|
+
vertical-align: middle;
|
|
352
302
|
}
|
|
353
303
|
|
|
354
304
|
textarea.bio-properties-panel-input {
|