camunda-bpmn-js 0.13.0 → 0.13.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.
@@ -0,0 +1,79 @@
1
+ .bio-properties-panel {
2
+ --select-template-background-color: var(--color-blue-205-100-50);
3
+ --select-template-hover-background-color: var(--color-blue-205-100-45);
4
+ --select-template-fill-color: var(--color-white);
5
+ --select-template-label-color: var(--color-white);
6
+
7
+ --unknown-template-background-color: var(--color-red-360-100-45);
8
+ --unknown-template-hover-background-color: var(--color-red-360-100-40);
9
+
10
+ --select-template-information-text-color: var(--color-grey-225-10-55);
11
+ }
12
+
13
+ .bio-properties-panel-header-template-icon {
14
+ object-fit: contain;
15
+ }
16
+
17
+ .bio-properties-panel-templates-group .bio-properties-panel-group-header-button:not(.bio-properties-panel-arrow) {
18
+ padding-right: 6px;
19
+ padding-left: 9px;
20
+ border-radius: 11px;
21
+ }
22
+
23
+ .bio-properties-panel-applied-template-button .bio-properties-panel-group-header-button,
24
+ .bio-properties-panel-template-update-available .bio-properties-panel-group-header-button,
25
+ .bio-properties-panel-group-header-button.bio-properties-panel-select-template-button {
26
+ background-color: var(--select-template-background-color);
27
+ color: var(--select-template-label-color);
28
+ fill: var(--select-template-fill-color);
29
+ }
30
+
31
+ .bio-properties-panel-applied-template-button .bio-properties-panel-group-header-button:hover,
32
+ .bio-properties-panel-template-update-available .bio-properties-panel-group-header-button:hover,
33
+ .bio-properties-panel-group-header-button.bio-properties-panel-select-template-button:hover {
34
+ background-color: var(--select-template-hover-background-color);
35
+ }
36
+
37
+ .bio-properties-panel-templates-group .bio-properties-panel-group-header-button * {
38
+ color: inherit;
39
+ }
40
+
41
+ .bio-properties-panel-templates-group .bio-properties-panel-group-header-button * + * {
42
+ margin-left: 2px;
43
+ }
44
+
45
+ .bio-properties-panel-group-header-button.bio-properties-panel-select-template-button:last-child {
46
+ padding-right: 9px;
47
+ padding-left: 6px;
48
+ margin-right: 22px;
49
+ }
50
+
51
+ .bio-properties-panel-template-update-available:last-child,
52
+ .bio-properties-panel-applied-template-button:last-child,
53
+ .bio-properties-panel-template-not-found:last-child {
54
+ margin-right: 32px;
55
+ }
56
+
57
+ .bio-properties-panel-remove-template {
58
+ color: var(--text-error-color);
59
+ }
60
+
61
+ .bio-properties-panel-template-not-found .bio-properties-panel-group-header-button {
62
+ background-color: var(--unknown-template-background-color);
63
+ color: var(--select-template-label-color);
64
+ fill: var(--select-template-fill-color);
65
+ }
66
+
67
+ .bio-properties-panel-template-not-found .bio-properties-panel-group-header-button:hover {
68
+ background-color: var(--unknown-template-hover-background-color);
69
+ }
70
+
71
+ .bio-properties-panel-template-not-found-text,
72
+ .bio-properties-panel-template-update-available-text {
73
+ color: var(--select-template-information-text-color);
74
+ }
75
+
76
+ .bio-properties-panel-template-not-found-text,
77
+ .bio-properties-panel-template-update-available-text {
78
+ width: 216px;
79
+ }