bpmn-js-rails 0.1.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.
Files changed (63) hide show
  1. checksums.yaml +7 -0
  2. data/Rakefile +6 -0
  3. data/app/assets/javascripts/bpmn-js/bpmn-modeler.production.min.js +199 -0
  4. data/app/assets/javascripts/bpmn-js/bpmn-viewer.production.min.js +22 -0
  5. data/app/assets/javascripts/dmn-js/dmn-modeler.production.min.js +194 -0
  6. data/app/assets/javascripts/dmn-js/dmn-viewer.production.min.js +16 -0
  7. data/app/assets/javascripts/form-js/form-editor.umd.js +78936 -0
  8. data/app/assets/javascripts/form-js/form-viewer.umd.js +54147 -0
  9. data/app/assets/stylesheets/bpmn-js/bpmn-font/css/bpmn-codes.css +108 -0
  10. data/app/assets/stylesheets/bpmn-js/bpmn-font/css/bpmn-embedded.css +166 -0
  11. data/app/assets/stylesheets/bpmn-js/bpmn-font/css/bpmn.css +164 -0
  12. data/app/assets/stylesheets/bpmn-js/bpmn-font/font/bpmn.eot +0 -0
  13. data/app/assets/stylesheets/bpmn-js/bpmn-font/font/bpmn.svg +224 -0
  14. data/app/assets/stylesheets/bpmn-js/bpmn-font/font/bpmn.ttf +0 -0
  15. data/app/assets/stylesheets/bpmn-js/bpmn-font/font/bpmn.woff +0 -0
  16. data/app/assets/stylesheets/bpmn-js/bpmn-font/font/bpmn.woff2 +0 -0
  17. data/app/assets/stylesheets/bpmn-js/bpmn-js.css +145 -0
  18. data/app/assets/stylesheets/bpmn-js/diagram-js.css +1011 -0
  19. data/app/assets/stylesheets/dmn-js/diagram-js.css +1011 -0
  20. data/app/assets/stylesheets/dmn-js/dmn-font/css/dmn-codes.css +41 -0
  21. data/app/assets/stylesheets/dmn-js/dmn-font/css/dmn-embedded.css +98 -0
  22. data/app/assets/stylesheets/dmn-js/dmn-font/css/dmn.css +97 -0
  23. data/app/assets/stylesheets/dmn-js/dmn-font/font/dmn.eot +0 -0
  24. data/app/assets/stylesheets/dmn-js/dmn-font/font/dmn.svg +90 -0
  25. data/app/assets/stylesheets/dmn-js/dmn-font/font/dmn.ttf +0 -0
  26. data/app/assets/stylesheets/dmn-js/dmn-font/font/dmn.woff +0 -0
  27. data/app/assets/stylesheets/dmn-js/dmn-font/font/dmn.woff2 +0 -0
  28. data/app/assets/stylesheets/dmn-js/dmn-js-boxed-expression-controls.css +130 -0
  29. data/app/assets/stylesheets/dmn-js/dmn-js-boxed-expression.css +186 -0
  30. data/app/assets/stylesheets/dmn-js/dmn-js-decision-table-controls.css +301 -0
  31. data/app/assets/stylesheets/dmn-js/dmn-js-decision-table.css +580 -0
  32. data/app/assets/stylesheets/dmn-js/dmn-js-drd.css +95 -0
  33. data/app/assets/stylesheets/dmn-js/dmn-js-literal-expression.css +165 -0
  34. data/app/assets/stylesheets/dmn-js/dmn-js-shared.css +221 -0
  35. data/app/assets/stylesheets/form-js/form-js-editor.css +2342 -0
  36. data/app/assets/stylesheets/form-js/form-js.css +3694 -0
  37. data/app/helpers/bpmn_js_rails/view_helper.rb +291 -0
  38. data/app/javascript/bpmn_js_rails/controllers/bpmn_js_modeler_controller.js +85 -0
  39. data/app/javascript/bpmn_js_rails/controllers/bpmn_js_viewer_controller.js +46 -0
  40. data/app/javascript/bpmn_js_rails/controllers/dmn_js_modeler_controller.js +102 -0
  41. data/app/javascript/bpmn_js_rails/controllers/dmn_js_viewer_controller.js +45 -0
  42. data/app/javascript/bpmn_js_rails/controllers/form_js_editor_controller.js +80 -0
  43. data/app/javascript/bpmn_js_rails/controllers/form_js_viewer_controller.js +52 -0
  44. data/app/javascript/bpmn_js_rails/index.js +34 -0
  45. data/app/models/bpmn_js_rails/decision.rb +60 -0
  46. data/app/models/bpmn_js_rails/diagram.rb +51 -0
  47. data/app/models/bpmn_js_rails/form.rb +32 -0
  48. data/config/importmap.rb +7 -0
  49. data/config/routes.rb +2 -0
  50. data/db/migrate/20260319000001_create_bpmn_js_rails_diagrams.rb +15 -0
  51. data/db/migrate/20260319000002_create_bpmn_js_rails_forms.rb +15 -0
  52. data/db/migrate/20260319000003_create_bpmn_js_rails_decisions.rb +15 -0
  53. data/lib/bpmn-js-rails.rb +1 -0
  54. data/lib/bpmn_js_rails/engine.rb +30 -0
  55. data/lib/bpmn_js_rails/version.rb +3 -0
  56. data/lib/bpmn_js_rails/version.rb.erb +3 -0
  57. data/lib/bpmn_js_rails.rb +5 -0
  58. data/lib/generators/bpmn_js_rails/install/install_generator.rb +58 -0
  59. data/lib/generators/bpmn_js_rails/install/templates/create_bpmn_js_rails_decisions.rb.erb +15 -0
  60. data/lib/generators/bpmn_js_rails/install/templates/create_bpmn_js_rails_diagrams.rb.erb +15 -0
  61. data/lib/generators/bpmn_js_rails/install/templates/create_bpmn_js_rails_forms.rb.erb +15 -0
  62. data/lib/tasks/form_js_rails_tasks.rake +4 -0
  63. metadata +116 -0
@@ -0,0 +1,2342 @@
1
+ .fjs-editor-container {
2
+ --color-children-selected-border: var(--cds-border-interactive, var(--color-blue-219-100-53));
3
+ --color-children-selected-background: transparent;
4
+ --color-children-hover-border: var(--cds-border-interactive, var(--color-blue-219-100-53-05));
5
+ --color-context-pad-item-background: transparent;
6
+ --color-context-pad-item-fill: var(--cds-icon-secondary, var(--color-grey-225-10-15));
7
+ --color-context-pad-item-hover-fill: var(--color-red-360-100-45);
8
+ --color-resize-handle-background: var(--cds-border-interactive, var(--color-blue-219-100-53));
9
+ --color-resize-handle-border: var(--cds-border-interactive, var(--color-blue-219-100-53));
10
+ --color-dragula-background: var(--cds-highlight, var(--color-blue-205-100-95));
11
+ --color-dragula-border: var(--cds-border-interactive, var(--color-blue-205-100-45));
12
+ --color-dragula-mirror-background: var(--cds-background, var(--color-white));
13
+ --color-dragula-mirror-border: var(--cds-border-strong, var(--cds-border-strong-01, var(--color-grey-225-10-90)));
14
+ --color-dragula-error-background: var(--color-red-360-100-92);
15
+ --color-dragula-error-border: var(--cds-text-error, var(--color-red-360-100-45));
16
+ }
17
+
18
+ .fjs-palette-container {
19
+ --color-palette-text: var(--cds-text-primary, var(--color-grey-225-10-15));
20
+ --color-palette-container-background: var(--cds-background, var(--color-grey-225-10-95));
21
+ --color-palette-container-border: var(--cds-border-strong, var(--cds-border-strong-01, var(--color-grey-225-10-80)));
22
+ --color-palette-header: var(--cds-text-primary, var(--color-text));
23
+ --color-palette-header-background: var(--cds-background, var(--color-grey-225-10-95));
24
+ --color-palette-header-border: var(--cds-border-strong, var(--cds-border-strong-01, var(--color-grey-225-10-85)));
25
+ --color-palette-search: var(--color-palette-text);
26
+ --color-palette-search-icon: var(--cds-icon-secondary, var(--color-grey-225-10-35));
27
+ --color-palette-search-icon-hover: var(--cds-icon-primary, var(--color-grey-225-10-15));
28
+ --color-palette-search-background: var(--cds-field, var(--cds-field-01, var(--color-white)));
29
+ --color-palette-search-border: var(--cds-border-strong, var(--cds-border-strong-01, var(--color-grey-225-10-75)));
30
+ --color-palette-search-focus-background: var(--cds-field, var(--cds-field-01, var(--color-blue-205-100-95)));
31
+ --color-palette-search-focus-border: var(--cds-focus, var(--color-blue-205-100-50));
32
+ --color-palette-search-clear-focus-border: var(--cds-focus, var(--color-grey-225-10-50));
33
+ --color-palette-group-title: var(--color-palette-text);
34
+ --color-palette-field: var(--color-palette-text);
35
+ --color-palette-field-background: var(--cds-layer, var(--cds-layer-01, var(--color-white)));
36
+ --color-palette-field-border: var(--cds-border-subtle, var(--cds-border-subtle-01, var(--color-grey-225-10-93)));
37
+ --color-palette-field-focus: var(--cds-border-interactive, var(--color-blue-205-100-45));
38
+ --color-palette-field-hover-background: var(--cds-background-hover, var(--color-grey-225-10-90));
39
+ --color-palette-field-hover-border: var(
40
+ --cds-border-strong,
41
+ var(--cds-border-strong-01, var(--color-grey-225-10-55))
42
+ );
43
+ --cursor-palette-field: grab;
44
+ --palette-width: 270px;
45
+ }
46
+
47
+ .fjs-properties-container {
48
+ --color-properties-container-background: var(--cds-background, var(--color-white));
49
+ --color-properties-container-border: var(
50
+ --cds-border-strong,
51
+ var(--cds-border-strong-01, var(--color-grey-225-10-80))
52
+ );
53
+ --properties-panel-width: 300px;
54
+ }
55
+
56
+ /**
57
+ * Theming overrides
58
+ */
59
+ .fjs-properties-container .bio-properties-panel {
60
+ --text-base-color: var(--cds-text-primary, var(--color-grey-225-10-15));
61
+ --text-error-color: var(--cds-text-color, var(--color-red-360-100-45));
62
+ --link-color: var(--cds-text-primary, var(--color-blue-205-100-50));
63
+ --description-color: var(--cds-text-secondary, var(--color-grey-225-10-35));
64
+ --description-code-background-color: var(--cds-layer, var(--cds-layer-01, var(--color-grey-225-10-97)));
65
+ --description-code-border-color: var(--cds-border-strong, var(--cds-border-strong-01, var(--color-grey-225-10-85)));
66
+ --description-list-item-color: var(--cds-text-secondary, var(--color-grey-225-10-35));
67
+ --placeholder-color: var(--cds-text-placeholder, var(--color-grey-225-10-35));
68
+ --placeholder-background-color: var(--cds-layer, var(--cds-layer-01, var(--color-grey-225-10-95)));
69
+ --header-background-color: var(--cds-layer, var(--cds-layer-01, var(--color-grey-225-10-95)));
70
+ --header-icon-fill-color: var(--cds-icon-primary, var(--color-grey-225-10-15));
71
+ --header-bottom-border-color: var(--color-grey-225-10-75);
72
+ --group-background-color: var(--cds-background, var(--color-white));
73
+ --group-bottom-border-color: var(--cds-border-strong, var(--cds-border-strong-01, var(--color-grey-225-10-75)));
74
+ --sticky-group-background-color: var(--cds-layer, var(--cds-layer-01, var(--color-grey-225-10-95)));
75
+ --sticky-group-bottom-border-color: var(
76
+ --cds-border-strong,
77
+ var(--cds-border-strong-01, var(--color-grey-225-10-75))
78
+ );
79
+ --add-entry-fill-color: var(--cds-icon-secondary, var(--color-grey-225-10-35));
80
+ --add-entry-hover-fill-color: var(--cds-icon-inverse, var(--color-white));
81
+ --add-entry-hover-background-color: var(--cds-interactive, var(--color-blue-205-100-50));
82
+ --add-entry-label-color: var(--cds-text-inverse, var(--color-white));
83
+ --remove-entry-fill-color: var(--color-red-360-100-45);
84
+ --remove-entry-hover-background-color: var(--color-red-360-100-92);
85
+ --arrow-fill-color: var(--cds-icon-secondary, var(--color-grey-225-10-35));
86
+ --arrow-hover-background-color: var(--cds-layer, var(--cds-layer-01, var(--color-grey-225-10-95)));
87
+ --dot-color: var(--cds-text-secondary, var(--color-grey-225-10-35));
88
+ --list-badge-color: var(--cds-text-inverse, var(--color-white));
89
+ --list-badge-background-color: var(--cds-background-inverse, var(--color-grey-225-10-35));
90
+ --input-background-color: var(--cds-field, var(--cds-field-01, var(--color-grey-225-10-97)));
91
+ --input-border-color: var(--cds-border-strong, var(--cds-border-strong-01, var(--color-grey-225-10-75)));
92
+ --input-focus-background-color: var(--cds-field, var(--cds-field-01, var(--color-blue-205-100-95)));
93
+ --input-focus-border-color: var(--cds-focus, var(--color-blue-205-100-50));
94
+ --input-error-background-color: var(--cds-field, var(--cds-field-01, var(--color-red-360-100-97)));
95
+ --input-error-border-color: var(--cds-text-error, var(--color-red-360-100-45));
96
+ --input-error-focus-border-color: var(--cds-text-error, var(--color-red-360-100-45));
97
+ --input-disabled-color: var(--cds-text-disabled, var(--color-grey-225-10-55));
98
+ --input-disabled-background-color: var(--cds-field, var(--cds-field-01, var(--color-grey-225-10-97)));
99
+ --input-disabled-border-color: var(--cds-border-disabled, var(--color-grey-225-10-90));
100
+ --toggle-switch-on-background-color: var(--cds-interactive, var(--color-blue-205-100-50));
101
+ --toggle-switch-off-background-color: var(--cds-toggle-off, var(--color-grey-225-10-75));
102
+ --toggle-switch-switcher-background-color: var(--cds-background, var(--color-white));
103
+ --side-line-background-color: var(--cds-text-secondary, var(--color-grey-225-10-35));
104
+ --side-line-extension-background-color: var(--cds-text-secondary, (--color-grey-225-10-35));
105
+ --list-entry-dot-background-color: var(--cds-background-inverse, var(--color-grey-225-10-35));
106
+ --list-entry-header-button-fill-color: var(--cds-background-inverse, var(--color-grey-225-10-35));
107
+ --list-entry-add-entry-empty-background-color: var(--cds-interactive, var(--color-blue-205-100-50));
108
+ --list-entry-add-entry-empty-hover-background-color: var(--cds-interactive, var(--color-blue-205-100-45));
109
+ --list-entry-add-entry-label-color: var(--cds-text-inverse, var(--color-white));
110
+ --list-entry-add-entry-background-color: var(--cds-interactive, var(--color-blue-205-100-50));
111
+ --list-entry-add-entry-fill-color: var(--cds-icon-inverse, var(--color-white));
112
+ --feel-background-color: transparent;
113
+ --feel-active-color: var(--cds-interactive, var(--color-blue-205-100-45));
114
+ --feel-inactive-color: var(--cds-icon-secondary, var(--color-grey-225-10-35));
115
+ --feel-hover-color: var(--cds-icon-primary, var(--color-grey-225-10-15));
116
+ --feel-hover-background-color: var(--cds-layer-02, var(--color-grey-225-10-97));
117
+ --feel-active-background-color: transparent;
118
+ --feel-required-color: var(--cds-icon-disabled, var(--color-grey-225-10-55));
119
+ --feel-indicator-background-color: var(--cds-background-hover, var(--color-grey-225-10-90));
120
+ }
121
+
122
+ .fjs-properties-container .bio-properties-panel-input {
123
+ color: var(--color-text);
124
+ }
125
+
126
+ .fjs-editor-container {
127
+ height: 100%;
128
+ width: 100%;
129
+ display: flex;
130
+ }
131
+
132
+ .fjs-editor-container .fjs-form-editor {
133
+ display: flex;
134
+ flex: 1;
135
+ flex-direction: row;
136
+ }
137
+
138
+ .fjs-editor-container .fjs-form-container {
139
+ overflow-y: auto;
140
+ position: relative;
141
+ }
142
+
143
+ .fjs-editor-container .fjs-render-injector-container {
144
+ width: 0;
145
+ height: 0;
146
+ display: none;
147
+ overflow: hidden;
148
+ }
149
+
150
+ .fjs-editor-container .fjs-form-container,
151
+ .fjs-editor-container .fjs-form {
152
+ display: flex;
153
+ flex-direction: column;
154
+ flex: 1;
155
+ }
156
+
157
+ .fjs-editor-container .fjs-form > .fjs-element {
158
+ flex-grow: 1;
159
+ }
160
+
161
+ .fjs-editor-container .fjs-children .fjs-children {
162
+ margin: 3px 0;
163
+ }
164
+
165
+ .fjs-editor-container .fjs-children .fjs-element {
166
+ position: relative;
167
+ border: solid 2px transparent;
168
+ outline: none;
169
+ }
170
+
171
+ .fjs-editor-container .fjs-form > .fjs-element {
172
+ border: none;
173
+ outline: none;
174
+ }
175
+
176
+ .fjs-editor-container .fjs-form-field:not(.fjs-powered-by) {
177
+ margin: 1px 6px;
178
+ }
179
+
180
+ .fjs-editor-container .fjs-children .fjs-element.fjs-outlined {
181
+ border-color: var(--color-borders-group);
182
+ }
183
+
184
+ .fjs-editor-container .fjs-children .fjs-element.fjs-dashed-outlined {
185
+ border-color: var(--color-borders-group);
186
+ border-style: dashed;
187
+ }
188
+
189
+ .fjs-editor-container .fjs-children .fjs-element.fjs-editor-selected {
190
+ border-color: var(--color-children-selected-border) !important;
191
+ background-color: var(--color-children-selected-background);
192
+ border-style: solid;
193
+ }
194
+
195
+ .fjs-editor-container .fjs-children .fjs-element:hover.fjs-editor-hovered,
196
+ .fjs-editor-container .fjs-children .fjs-element:focus {
197
+ border-color: var(--color-children-hover-border);
198
+ border-style: solid;
199
+ }
200
+
201
+ .fjs-editor-container .fjs-layout-column:first-child > .fjs-element[data-field-type=group],
202
+ .fjs-editor-container .fjs-layout-column:first-child > .fjs-element[data-field-type=dynamiclist] {
203
+ margin-left: -6px;
204
+ }
205
+
206
+ .fjs-editor-container .fjs-layout-column:last-child > .fjs-element[data-field-type=group],
207
+ .fjs-editor-container .fjs-layout-column:last-child > .fjs-element[data-field-type=dynamiclist] {
208
+ margin-right: -6px;
209
+ }
210
+
211
+ .fjs-editor-container .fjs-form-field-grouplike,
212
+ .fjs-editor-container .fjs-form-field-grouplike .fjs-form-field-grouplike .fjs-form-field-grouplike {
213
+ margin: 1px 6px;
214
+ padding: 0px;
215
+ }
216
+
217
+ .fjs-editor-container .fjs-form-field-grouplike.fjs-outlined {
218
+ outline: none;
219
+ }
220
+
221
+ .fjs-editor-container .fjs-form-field-grouplike .cds--grid {
222
+ padding: 0 2rem;
223
+ }
224
+
225
+ .fjs-editor-container .fjs-form-field-grouplike > label {
226
+ margin-top: 6px;
227
+ }
228
+
229
+ .fjs-editor-container .fjs-input:disabled,
230
+ .fjs-editor-container .fjs-textarea:disabled,
231
+ .fjs-editor-container .fjs-taglist-input:disabled,
232
+ .fjs-editor-container .fjs-button:disabled,
233
+ .fjs-editor-container .fjs-select:disabled {
234
+ pointer-events: none;
235
+ }
236
+
237
+ .fjs-editor-container .fjs-readonly {
238
+ pointer-events: none;
239
+ }
240
+
241
+ .fjs-editor-container .fjs-drag-container,
242
+ .fjs-editor-container .fjs-drop-container-vertical {
243
+ user-select: none;
244
+ }
245
+
246
+ .fjs-editor-container .fjs-empty-component {
247
+ display: flex;
248
+ justify-content: center;
249
+ align-items: center;
250
+ height: 80px;
251
+ width: calc(100% - 4rem);
252
+ position: absolute;
253
+ container-type: size;
254
+ }
255
+
256
+ .fjs-editor-container .fjs-empty-component .fjs-empty-component-text {
257
+ color: var(--cds-text-disabled, var(--color-grey-225-10-55));
258
+ }
259
+
260
+ @container (width < 100px) {
261
+ .fjs-empty-component-text {
262
+ display: none;
263
+ }
264
+ }
265
+ .fjs-editor-container .fjs-empty-editor {
266
+ display: flex;
267
+ align-items: center;
268
+ justify-content: center;
269
+ position: absolute;
270
+ top: 0;
271
+ left: 0;
272
+ width: 100%;
273
+ height: 100%;
274
+ }
275
+
276
+ .fjs-cursor-grabbing .fjs-editor-container .fjs-empty-editor {
277
+ display: none;
278
+ }
279
+
280
+ .fjs-editor-container .fjs-empty-editor .fjs-empty-editor-card {
281
+ display: flex;
282
+ flex-direction: column;
283
+ padding: 20px;
284
+ gap: 4px;
285
+ }
286
+
287
+ .fjs-editor-container .fjs-drop-container-horizontal {
288
+ width: 100%;
289
+ }
290
+
291
+ .fjs-editor-container .fjs-layout-row {
292
+ padding: 4px 0px;
293
+ }
294
+
295
+ .fjs-editor-container .fjs-drag-row-move {
296
+ display: flex;
297
+ width: 100%;
298
+ padding: 3px 0px;
299
+ position: relative;
300
+ }
301
+
302
+ .fjs-editor-container .fjs-row-dragger {
303
+ z-index: 2;
304
+ position: absolute;
305
+ top: 25%;
306
+ height: 50%;
307
+ left: -33px;
308
+ width: 23px;
309
+ padding-right: 7px;
310
+ cursor: grab;
311
+ display: flex;
312
+ justify-content: center;
313
+ align-items: center;
314
+ }
315
+
316
+ .fjs-editor-container .fjs-row-dragger svg {
317
+ visibility: hidden;
318
+ }
319
+
320
+ .fjs-editor-container .fjs-row-dragger:hover svg,
321
+ .fjs-editor-container .fjs-drag-row-move:hover > .fjs-row-dragger svg {
322
+ visibility: visible;
323
+ }
324
+
325
+ .fjs-editor-container .fjs-drag-move {
326
+ padding: 0 3px;
327
+ }
328
+
329
+ .fjs-editor-container .fjs-field-resize-handle {
330
+ resize: horizontal;
331
+ position: absolute;
332
+ visibility: hidden;
333
+ width: 6px;
334
+ top: 0;
335
+ bottom: 0;
336
+ margin: auto;
337
+ height: 50px;
338
+ max-height: calc(100% - 2px);
339
+ border: 1px solid var(--color-resize-handle-border);
340
+ border-radius: 50px;
341
+ background: var(--color-white);
342
+ z-index: 3;
343
+ }
344
+
345
+ .fjs-editor-container .fjs-field-resize-handle-right {
346
+ right: -4px;
347
+ cursor: ew-resize;
348
+ }
349
+
350
+ .fjs-editor-container .fjs-field-resize-handle-left {
351
+ left: -4px;
352
+ cursor: ew-resize;
353
+ }
354
+
355
+ .fjs-editor-container .fjs-element-resizing-right .fjs-field-resize-handle-right,
356
+ .fjs-editor-container .fjs-element-resizing-left .fjs-field-resize-handle-left,
357
+ .fjs-editor-container .fjs-field-resize-handle:hover {
358
+ background: var(--color-resize-handle-background);
359
+ }
360
+
361
+ .fjs-editor-container .fjs-element-resizing-right .fjs-context-pad,
362
+ .fjs-editor-container .fjs-element-resizing-left .fjs-context-pad {
363
+ display: none;
364
+ }
365
+
366
+ .fjs-editor-container .fjs-children .fjs-editor-selected > .fjs-field-resize-handle {
367
+ visibility: visible;
368
+ }
369
+
370
+ .fjs-resize-drag-preview {
371
+ width: 1px;
372
+ height: 1px;
373
+ position: absolute;
374
+ top: 0;
375
+ }
376
+
377
+ .fjs-editor-container .fjs-repeat-render-footer {
378
+ font-size: var(--font-size-label);
379
+ background: var(--cds-field, var(--color-background-disabled));
380
+ color: var(--color-text-light);
381
+ padding: 3px;
382
+ display: flex;
383
+ align-items: center;
384
+ justify-content: center;
385
+ margin: 0px 5px 3px 5px;
386
+ }
387
+
388
+ .fjs-editor-container .fjs-repeat-render-footer svg {
389
+ margin-right: 4px;
390
+ }
391
+
392
+ /* do not show resize handles on small screens */
393
+ @media (max-width: 66rem) {
394
+ .fjs-editor-container .fjs-children .fjs-editor-selected .fjs-field-resize-handle {
395
+ display: none !important;
396
+ }
397
+ }
398
+ /**
399
+ * Cursor styles
400
+ */
401
+ .fjs-cursor-grab {
402
+ cursor: -webkit-grab;
403
+ cursor: -moz-grab;
404
+ cursor: grab;
405
+ }
406
+
407
+ .fjs-cursor-grabbing {
408
+ cursor: -webkit-grabbing;
409
+ cursor: -moz-grabbing;
410
+ cursor: grabbing;
411
+ }
412
+
413
+ .fjs-cursor-crosshair {
414
+ cursor: crosshair;
415
+ }
416
+
417
+ .fjs-cursor-move {
418
+ cursor: move;
419
+ }
420
+
421
+ .fjs-cursor-not-allowed {
422
+ cursor: not-allowed;
423
+ }
424
+
425
+ /**
426
+ * Context Pad
427
+ */
428
+ .fjs-editor-container .fjs-context-pad {
429
+ z-index: 2;
430
+ position: absolute;
431
+ top: 0;
432
+ right: 5px;
433
+ }
434
+
435
+ .fjs-editor-container .fjs-context-pad-item {
436
+ border: none;
437
+ background-color: var(--color-context-pad-item-background);
438
+ padding: 0;
439
+ width: 24px;
440
+ height: 24px;
441
+ color: var(--color-context-pad-item-fill);
442
+ display: flex;
443
+ justify-content: center;
444
+ align-items: center;
445
+ }
446
+
447
+ .fjs-editor-container .fjs-context-pad-item:hover {
448
+ color: var(--color-context-pad-item-hover-fill);
449
+ }
450
+
451
+ .fjs-editor-container .fjs-context-pad-item:focus-visible {
452
+ outline: 2px solid var(--color-children-selected-border);
453
+ border-radius: 2px;
454
+ }
455
+
456
+ /**
457
+ * Palette
458
+ */
459
+ .fjs-editor-container .fjs-palette-container {
460
+ height: 100%;
461
+ }
462
+
463
+ .fjs-palette-container {
464
+ width: var(--palette-width);
465
+ background-color: var(--color-palette-container-background);
466
+ border-right: solid 1px var(--color-palette-container-border);
467
+ font-family: var(--font-family);
468
+ }
469
+
470
+ .fjs-palette-container .fjs-palette {
471
+ height: 100%;
472
+ display: flex;
473
+ flex-direction: column;
474
+ flex: 1;
475
+ }
476
+
477
+ .fjs-palette-container .fjs-palette-header {
478
+ font-size: 14px;
479
+ font-weight: bold;
480
+ color: var(--color-palette-header);
481
+ padding: 10px 15px;
482
+ border-bottom: solid 1px var(--color-palette-header-border);
483
+ background: var(--color-palette-header-background);
484
+ user-select: none;
485
+ }
486
+
487
+ .fjs-palette-container .fjs-palette-footer {
488
+ display: flex;
489
+ flex-direction: column;
490
+ align-items: center;
491
+ }
492
+
493
+ .fjs-palette-container .fjs-palette-footer .fjs-palette-footer-fill {
494
+ padding: 10px;
495
+ width: 100%;
496
+ }
497
+
498
+ .fjs-palette-container .fjs-palette-search-container {
499
+ display: flex;
500
+ flex-direction: row;
501
+ padding: 4px;
502
+ margin: 12px;
503
+ color: var(--color-palette-search);
504
+ border: 1px solid var(--color-palette-search-border);
505
+ background-color: var(--color-palette-search-background);
506
+ border-radius: 2px;
507
+ font-size: 14px;
508
+ }
509
+
510
+ .fjs-palette-container .fjs-palette-search-container:focus-within {
511
+ outline: none;
512
+ background-color: var(--color-palette-search-focus-background);
513
+ border: 1px solid var(--color-palette-search-focus-border);
514
+ }
515
+
516
+ .fjs-palette-container .fjs-palette-search-icon {
517
+ margin-right: 6px;
518
+ display: flex;
519
+ align-items: center;
520
+ justify-content: center;
521
+ color: var(--color-palette-search-icon);
522
+ }
523
+
524
+ .fjs-palette-container .fjs-palette-search {
525
+ background-color: inherit;
526
+ font-family: inherit;
527
+ margin: 0;
528
+ border: none;
529
+ padding: 0;
530
+ color: var(--color-palette-text);
531
+ }
532
+
533
+ .fjs-palette-container .fjs-palette-search:focus {
534
+ outline: none;
535
+ }
536
+
537
+ .fjs-palette-container .fjs-palette-search-clear {
538
+ display: flex;
539
+ justify-content: center;
540
+ align-items: center;
541
+ border: none;
542
+ margin-left: auto;
543
+ padding: 0;
544
+ background: transparent;
545
+ color: var(--color-palette-search-icon);
546
+ }
547
+
548
+ .fjs-palette-container .fjs-palette-search-clear svg {
549
+ margin: 0;
550
+ }
551
+
552
+ .fjs-palette-container .fjs-palette-search-clear:hover {
553
+ color: var(--color-palette-search-icon-hover);
554
+ }
555
+
556
+ .fjs-palette-container .fjs-palette-entries {
557
+ display: flex;
558
+ flex-direction: column;
559
+ overflow-x: hidden;
560
+ overflow-y: auto;
561
+ gap: 20px;
562
+ padding-bottom: 20px;
563
+ }
564
+
565
+ .fjs-palette-container .fjs-palette-group {
566
+ display: flex;
567
+ flex-direction: column;
568
+ width: 236px;
569
+ margin: auto;
570
+ }
571
+
572
+ .fjs-palette-container .fjs-palette-group-title {
573
+ font-size: 14px;
574
+ font-weight: 500;
575
+ margin-bottom: 4px;
576
+ color: var(--color-palette-group-title);
577
+ user-select: none;
578
+ }
579
+
580
+ .fjs-palette-container .fjs-palette-fields {
581
+ display: flex;
582
+ flex-wrap: wrap;
583
+ gap: 10px;
584
+ }
585
+
586
+ .fjs-palette-field {
587
+ height: 72px;
588
+ display: flex;
589
+ flex-direction: column;
590
+ justify-content: center;
591
+ font-size: 11px;
592
+ align-items: center;
593
+ border: none;
594
+ font-family: inherit;
595
+ user-select: none;
596
+ color: var(--color-palette-field);
597
+ background-color: var(--color-palette-field-background);
598
+ outline: solid 1px var(--color-palette-field-border);
599
+ outline-offset: 0px;
600
+ transition: all ease-in-out 0.05s;
601
+ }
602
+
603
+ .fjs-palette-container .fjs-palette-field {
604
+ width: 72px;
605
+ }
606
+
607
+ .fjs-palette-container .fjs-palette-field:focus {
608
+ outline: solid 1px var(--color-palette-field-focus);
609
+ }
610
+
611
+ .fjs-palette-field .fjs-palette-field-icon,
612
+ .fjs-palette-field .fjs-field-icon-image {
613
+ margin: 0 auto;
614
+ }
615
+
616
+ .fjs-palette-field .fjs-palette-field-text {
617
+ text-align: center;
618
+ width: inherit;
619
+ }
620
+
621
+ .fjs-palette-container .fjs-palette-field:hover {
622
+ outline: solid 1px var(--color-palette-field-hover-border);
623
+ cursor: var(--cursor-palette-field);
624
+ }
625
+
626
+ .fjs-palette-container .fjs-palette-no-entries {
627
+ padding: 5px 15px;
628
+ font-size: 14px;
629
+ color: var(--color-palette-text);
630
+ }
631
+
632
+ /**
633
+ * JSON Editors
634
+ */
635
+ .fjs-json-editor .cm-editor {
636
+ font-size: var(--font-size-label);
637
+ line-height: var(--line-height-label);
638
+ letter-spacing: var(--letter-spacing-label);
639
+ }
640
+
641
+ .fjs-json-editor .cm-placeholder {
642
+ color: var(--cds-text-placeholder, var(--color-grey-225-10-35));
643
+ }
644
+
645
+ .fjs-json-editor .cm-placeholder > :first-child {
646
+ margin-top: 0;
647
+ }
648
+
649
+ .fjs-json-editor.fjs-cm-no-lint .cm-lint-marker,
650
+ .fjs-json-editor.fjs-cm-no-lint .cm-lintPoint-error {
651
+ display: none;
652
+ }
653
+
654
+ .fjs-json-editor.fjs-cm-no-lint .cm-activeLine,
655
+ .fjs-json-editor.fjs-cm-no-lint .cm-activeLineGutter {
656
+ background: none;
657
+ }
658
+
659
+ /**
660
+ * Properties Panel
661
+ */
662
+ .fjs-editor-container .fjs-properties-container {
663
+ height: 100%;
664
+ }
665
+
666
+ .fjs-properties-container {
667
+ background-color: var(--color-properties-container-background);
668
+ width: var(--properties-panel-width);
669
+ border-left: solid 1px var(--color-properties-container-border);
670
+ color: var(--color-text);
671
+ }
672
+
673
+ .fjs-properties-container .fjs-properties-panel {
674
+ height: 100%;
675
+ }
676
+
677
+ .fjs-properties-container .fjs-properties-panel * {
678
+ box-sizing: border-box;
679
+ }
680
+
681
+ .fjs-properties-container .fjs-properties-panel .bio-properties-panel-header-icon svg {
682
+ transform: scale(1.3);
683
+ }
684
+
685
+ .fjs-properties-container .fjs-properties-panel .fjs-properties-panel-detached-description {
686
+ margin: 0px 12px 6px;
687
+ }
688
+
689
+ .fjs-properties-container .fjs-properties-panel .cm-editor {
690
+ max-height: 400px;
691
+ }
692
+
693
+ /**
694
+ * Editor Form Fields
695
+ */
696
+ .fjs-editor-container .fjs-form-field-placeholder {
697
+ color: var(--color-text-light);
698
+ font-style: italic;
699
+ }
700
+
701
+ .fjs-editor-container .fjs-form-field-placeholder svg {
702
+ width: 32px;
703
+ height: 32px;
704
+ vertical-align: middle;
705
+ margin-top: -2px;
706
+ margin-right: 2px;
707
+ }
708
+
709
+ .fjs-editor-container .fjs-form-field-spacer {
710
+ min-height: 30px;
711
+ background: repeating-linear-gradient(45deg, #ffffff, #ffffff 10px, #f5f5f5 10px, #f5f5f5 20px);
712
+ }
713
+
714
+ .fjs-editor-container .fjs-form-field-html,
715
+ .fjs-editor-container .fjs-form-field-text {
716
+ min-height: 30px;
717
+ }
718
+
719
+ .fjs-editor-container .fjs-form-field-separator hr {
720
+ margin: 10px 2px;
721
+ }
722
+
723
+ /**
724
+ * Custom Dragula Styles
725
+ */
726
+ .gu-transit {
727
+ background: var(--color-dragula-background) !important;
728
+ border: dashed 2px var(--color-dragula-border) !important;
729
+ border-radius: 3px !important;
730
+ filter: none !important;
731
+ height: 70px !important;
732
+ opacity: 1 !important;
733
+ /* mitigate for additional border in row */
734
+ flex-grow: 0.98 !important;
735
+ margin: 0 !important;
736
+ }
737
+
738
+ /* row drop preview */
739
+ .fjs-children > .gu-transit {
740
+ height: 28px !important;
741
+ width: 100% !important;
742
+ flex: unset !important;
743
+ }
744
+
745
+ /* error drop preview */
746
+ .fjs-error-drop > .gu-transit {
747
+ height: 100% !important;
748
+ background: var(--color-dragula-error-background) !important;
749
+ border: none !important;
750
+ width: 6px !important;
751
+ flex: none !important;
752
+ padding: 0 !important;
753
+ border-radius: 5px !important;
754
+ }
755
+
756
+ .fjs-error-drop.cds--row {
757
+ flex-wrap: nowrap !important;
758
+ }
759
+
760
+ .gu-transit * {
761
+ display: none !important;
762
+ }
763
+
764
+ .gu-mirror {
765
+ background-color: var(--color-dragula-mirror-background) !important;
766
+ border: solid 1px var(--color-dragula-mirror-border) !important;
767
+ border-radius: 5px !important;
768
+ box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.15) !important;
769
+ display: flex !important;
770
+ filter: none !important;
771
+ flex-direction: row !important;
772
+ justify-content: center !important;
773
+ align-items: center !important;
774
+ opacity: 0.5 !important;
775
+ padding: 0 !important;
776
+ pointer-events: none !important;
777
+ height: 54px !important;
778
+ }
779
+
780
+ .fjs-field-preview {
781
+ margin: 5px 0;
782
+ display: flex;
783
+ flex-direction: column;
784
+ justify-content: center;
785
+ font-size: 11px;
786
+ user-select: none;
787
+ color: var(--color-text);
788
+ background: var(--color-white);
789
+ }
790
+
791
+ .fjs-field-preview .fjs-field-preview-icon {
792
+ margin: 0 auto;
793
+ }
794
+
795
+ .fjs-field-preview .fjs-field-preview-text {
796
+ text-align: center;
797
+ }
798
+
799
+ .gu-mirror.fjs-field-preview-container {
800
+ transform: rotate(-15deg);
801
+ font-family: var(--font-family);
802
+ width: 68px !important;
803
+ height: 68px !important;
804
+ }
805
+
806
+ .gu-mirror.fjs-drag-row-move {
807
+ padding: 4px 12px !important;
808
+ height: fit-content !important;
809
+ opacity: 0.8 !important;
810
+ max-height: 120px !important;
811
+ overflow: hidden !important;
812
+ align-items: start !important;
813
+ }
814
+
815
+ .gu-mirror.fjs-drag-row-move .cds--row {
816
+ flex-wrap: nowrap !important;
817
+ }
818
+
819
+ .gu-mirror {
820
+ position: fixed !important;
821
+ margin: 0 !important;
822
+ z-index: 9999 !important;
823
+ opacity: 0.8;
824
+ -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
825
+ filter: alpha(opacity=80);
826
+ }
827
+
828
+ .gu-hide {
829
+ display: none !important;
830
+ }
831
+
832
+ .gu-unselectable {
833
+ -webkit-user-select: none !important;
834
+ -moz-user-select: none !important;
835
+ -ms-user-select: none !important;
836
+ user-select: none !important;
837
+ }
838
+
839
+ .gu-transit {
840
+ opacity: 0.2;
841
+ -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
842
+ filter: alpha(opacity=20);
843
+ }
844
+
845
+ /**
846
+ * Theming
847
+ */
848
+ .bio-properties-panel,
849
+ .djs-parent {
850
+ --color-grey-225-10-15: hsl(225, 10%, 15%);
851
+ --color-grey-225-10-35: hsl(225, 10%, 35%);
852
+ --color-grey-225-10-55: hsl(225, 10%, 55%);
853
+ --color-grey-225-10-75: hsl(225, 10%, 75%);
854
+ --color-grey-225-10-80: hsl(225, 10%, 80%);
855
+ --color-grey-225-10-85: hsl(225, 10%, 85%);
856
+ --color-grey-225-10-90: hsl(225, 10%, 90%);
857
+ --color-grey-225-10-95: hsl(225, 10%, 95%);
858
+ --color-grey-225-10-97: hsl(225, 10%, 97%);
859
+ --color-grey-0-0-22: hsl(0, 0%, 22%);
860
+ --color-blue-205-100-35: hsl(205, 100%, 35%);
861
+ --color-blue-205-100-40: hsl(205, 100%, 40%);
862
+ --color-green-150-86-44: hsl(150, 86%, 44%);
863
+ --color-blue-205-100-45: hsl(205, 100%, 45%);
864
+ --color-blue-205-100-50: hsl(205, 100%, 50%);
865
+ --color-blue-219-99-53: hsl(219, 99%, 53%);
866
+ --color-blue-218-100-74: hsl(218, 100%, 74%);
867
+ --color-blue-205-100-85: hsl(205, 100%, 85%);
868
+ --color-blue-205-100-95: hsl(205, 100%, 95%);
869
+ --color-red-360-100-40: hsl(360, 100%, 40%);
870
+ --color-red-360-100-45: hsl(360, 100%, 45%);
871
+ --color-red-360-100-92: hsl(360, 100%, 92%);
872
+ --color-red-360-100-97: hsl(360, 100%, 97%);
873
+ --color-white: white;
874
+ --color-black: black;
875
+ --color-transparent: transparent;
876
+ }
877
+
878
+ .bio-properties-panel {
879
+ --text-base-color: var(--color-grey-225-10-15);
880
+ --text-error-color: var(--color-red-360-100-45);
881
+ --link-color: var(--color-blue-205-100-50);
882
+ --description-color: var(--color-grey-225-10-35);
883
+ --description-code-background-color: var(--color-grey-225-10-97);
884
+ --description-code-border-color: var(--color-grey-225-10-85);
885
+ --description-list-item-color: var(--color-grey-225-10-35);
886
+ --placeholder-color: var(--color-grey-225-10-35);
887
+ --placeholder-background-color: var(--color-grey-225-10-95);
888
+ --header-background-color: var(--color-grey-225-10-95);
889
+ --header-icon-fill-color: var(--color-grey-225-10-15);
890
+ --header-bottom-border-color: var(--color-grey-225-10-75);
891
+ --group-background-color: var(--color-white);
892
+ --group-bottom-border-color: var(--color-grey-225-10-75);
893
+ --sticky-group-background-color: var(--color-grey-225-10-95);
894
+ --sticky-group-bottom-border-color: var(--color-grey-225-10-75);
895
+ --add-entry-fill-color: var(--color-grey-225-10-35);
896
+ --add-entry-hover-fill-color: var(--color-white);
897
+ --add-entry-hover-background-color: var(--color-blue-205-100-50);
898
+ --add-entry-label-color: var(--color-white);
899
+ --remove-entry-fill-color: var(--color-red-360-100-45);
900
+ --remove-entry-hover-background-color: var(--color-red-360-100-92);
901
+ --arrow-fill-color: var(--color-grey-225-10-35);
902
+ --arrow-hover-background-color: var(--color-grey-225-10-95);
903
+ --dot-color: var(--color-grey-225-10-35);
904
+ --dot-color-error: var(--color-red-360-100-45);
905
+ --list-badge-color: var(--color-white);
906
+ --list-badge-background-color: var(--color-grey-225-10-35);
907
+ --input-background-color: var(--color-grey-225-10-97);
908
+ --input-border-color: var(--color-grey-225-10-75);
909
+ --input-focus-background-color: var(--color-blue-205-100-95);
910
+ --input-focus-border-color: var(--color-blue-205-100-50);
911
+ --focus-outline-color: var(--color-blue-205-100-40);
912
+ --input-error-background-color: var(--color-red-360-100-97);
913
+ --input-error-border-color: var(--color-red-360-100-45);
914
+ --input-error-focus-border-color: var(--color-red-360-100-45);
915
+ --input-disabled-color: var(--color-grey-225-10-55);
916
+ --input-disabled-background-color: var(--color-grey-225-10-97);
917
+ --input-disabled-border-color: var(--color-grey-225-10-90);
918
+ --toggle-switch-on-background-color: var(--color-blue-205-100-50);
919
+ --toggle-switch-off-background-color: var(--color-grey-225-10-75);
920
+ --toggle-switch-switcher-background-color: var(--color-white);
921
+ --side-line-background-color: var(--color-grey-225-10-35);
922
+ --side-line-extension-background-color: var(--color-grey-225-10-35);
923
+ --list-entry-dot-background-color: var(--color-grey-225-10-35);
924
+ --list-entry-header-button-fill-color: var(--color-grey-225-10-35);
925
+ --list-entry-add-entry-empty-background-color: var(--color-blue-205-100-50);
926
+ --list-entry-add-entry-empty-hover-background-color: var(--color-blue-205-100-45);
927
+ --list-entry-add-entry-label-color: var(--color-white);
928
+ --list-entry-add-entry-background-color: var(--color-blue-205-100-50);
929
+ --list-entry-add-entry-fill-color: var(--color-white);
930
+ --dropdown-item-background-color: var(--color-white);
931
+ --dropdown-item-hover-background-color: var(--color-grey-225-10-95);
932
+ --dropdown-separator-background-color: var(--color-grey-225-10-75);
933
+ --feel-background-color: transparent;
934
+ --feel-active-color: var(--color-blue-205-100-45);
935
+ --feel-inactive-color: var(--color-grey-225-10-35);
936
+ --feel-hover-color: var(--color-grey-225-10-15);
937
+ --feel-hover-background-color: var(--color-grey-225-10-97);
938
+ --feel-active-background-color: transparent;
939
+ --feel-required-color: var(--color-grey-225-10-55);
940
+ --feel-open-popup-color: hsla(0, 0%, 32%, 1);
941
+ --feel-open-popup-background-color: var(--color-white);
942
+ --feel-open-popup-hover-color: hsla(219, 99%, 53%, 1);
943
+ --feel-indicator-background-color: var(--color-grey-225-10-90);
944
+ --feelers-select-color: var(--color-blue-205-100-85);
945
+ --text-size-base: 14px;
946
+ --text-size-small: 13px;
947
+ --text-size-smallest: 12px;
948
+ --text-line-height: 21px;
949
+ --line-height-condensed: 17px;
950
+ --font-family: sans-serif;
951
+ --font-family-monospace: monospace;
952
+ display: flex;
953
+ flex-direction: column;
954
+ flex: 1;
955
+ position: relative;
956
+ height: 100%;
957
+ width: 100%;
958
+ overflow: hidden;
959
+ }
960
+
961
+ .bio-properties-panel {
962
+ color: var(--text-base-color);
963
+ }
964
+
965
+ .bio-properties-panel * {
966
+ font-size: var(--text-size-base);
967
+ line-height: var(--text-line-height);
968
+ font-weight: 400;
969
+ box-sizing: border-box;
970
+ }
971
+
972
+ .bio-properties-panel {
973
+ font-family: var(--font-family);
974
+ }
975
+
976
+ /**
977
+ * Placeholder (empty, multi select, ...)
978
+ */
979
+ .bio-properties-panel-placeholder {
980
+ position: absolute;
981
+ display: flex;
982
+ flex-direction: column;
983
+ justify-content: center;
984
+ align-items: center;
985
+ top: 0;
986
+ right: 0;
987
+ bottom: 0;
988
+ left: 0;
989
+ background-color: var(--placeholder-background-color);
990
+ }
991
+
992
+ .bio-properties-panel-placeholder-text {
993
+ color: var(--placeholder-color);
994
+ font-size: var(--text-size-base);
995
+ text-align: center;
996
+ margin: 12px 48px;
997
+ }
998
+
999
+ /**
1000
+ * Header
1001
+ */
1002
+ .bio-properties-panel-header {
1003
+ display: flex;
1004
+ flex-direction: row;
1005
+ align-items: center;
1006
+ font-size: var(--text-size-base);
1007
+ padding: 16px 10px;
1008
+ background-color: var(--header-background-color);
1009
+ border-bottom: 1px solid var(--header-bottom-border-color);
1010
+ width: 100%;
1011
+ z-index: 10;
1012
+ max-height: 64px;
1013
+ overflow: hidden;
1014
+ }
1015
+
1016
+ .bio-properties-panel-header-icon {
1017
+ fill: var(--header-icon-fill-color);
1018
+ display: flex;
1019
+ flex-direction: row;
1020
+ align-items: center;
1021
+ justify-content: center;
1022
+ width: 32px;
1023
+ height: 32px;
1024
+ }
1025
+
1026
+ .bio-properties-panel-header-labels {
1027
+ overflow: hidden;
1028
+ margin-left: 12px;
1029
+ user-select: none;
1030
+ }
1031
+
1032
+ .bio-properties-panel-header-type {
1033
+ font-size: var(--text-size-smallest);
1034
+ font-weight: 600;
1035
+ white-space: nowrap;
1036
+ text-overflow: ellipsis;
1037
+ overflow: hidden;
1038
+ text-transform: uppercase;
1039
+ }
1040
+
1041
+ .bio-properties-panel-header-label {
1042
+ white-space: nowrap;
1043
+ text-overflow: ellipsis;
1044
+ overflow: hidden;
1045
+ margin-top: -6px;
1046
+ }
1047
+
1048
+ .bio-properties-panel-header-actions {
1049
+ margin-left: auto;
1050
+ margin-top: auto;
1051
+ }
1052
+
1053
+ /**
1054
+ * Scroll container
1055
+ */
1056
+ .bio-properties-panel-scroll-container {
1057
+ overflow-y: auto;
1058
+ overflow-x: hidden;
1059
+ flex: 1;
1060
+ }
1061
+
1062
+ /**
1063
+ * Groups
1064
+ */
1065
+ .bio-properties-panel-group {
1066
+ background-color: var(--group-background-color);
1067
+ border-bottom: 1px solid var(--group-bottom-border-color);
1068
+ position: relative;
1069
+ }
1070
+
1071
+ .bio-properties-panel-group-header {
1072
+ display: flex;
1073
+ flex-direction: row;
1074
+ align-items: center;
1075
+ font-size: var(--text-size-base);
1076
+ height: 32px;
1077
+ user-select: none;
1078
+ justify-content: space-between;
1079
+ margin-bottom: -1px; /* avoid double borders */
1080
+ position: relative; /* browsers not supporting sticky */
1081
+ position: -webkit-sticky; /* for safari */
1082
+ position: sticky;
1083
+ top: 0;
1084
+ z-index: 10;
1085
+ }
1086
+
1087
+ .bio-properties-panel-group-header .bio-properties-panel-group-header-title {
1088
+ white-space: nowrap;
1089
+ overflow: hidden;
1090
+ text-overflow: ellipsis;
1091
+ margin: 1px 12px 0;
1092
+ }
1093
+
1094
+ .bio-properties-panel-group-header.open .bio-properties-panel-group-header-title {
1095
+ font-weight: 500;
1096
+ }
1097
+
1098
+ .bio-properties-panel-group-header.sticky {
1099
+ background-color: var(--sticky-group-background-color);
1100
+ border-bottom: 1px solid var(--sticky-group-bottom-border-color);
1101
+ }
1102
+
1103
+ .bio-properties-panel-group-header-buttons {
1104
+ display: flex;
1105
+ }
1106
+
1107
+ .bio-properties-panel-group-header-button {
1108
+ display: inline-flex;
1109
+ justify-content: center;
1110
+ align-items: center;
1111
+ align-self: center;
1112
+ height: 22px;
1113
+ line-height: 22px;
1114
+ min-width: 22px;
1115
+ margin: 5px;
1116
+ padding: 0 3px;
1117
+ border: none;
1118
+ background: none;
1119
+ }
1120
+
1121
+ .bio-properties-panel-group-header-button:focus {
1122
+ outline-offset: 2px;
1123
+ outline-color: var(--focus-outline-color);
1124
+ }
1125
+
1126
+ .bio-properties-panel-group-header-buttons .bio-properties-panel-group-header-buttons:last-child {
1127
+ margin-right: 0;
1128
+ }
1129
+
1130
+ .bio-properties-panel-add-entry {
1131
+ fill: var(--add-entry-fill-color);
1132
+ border-radius: 11px;
1133
+ }
1134
+
1135
+ .bio-properties-panel-group-header.empty .bio-properties-panel-add-entry {
1136
+ margin-right: 69px;
1137
+ }
1138
+
1139
+ .bio-properties-panel-group-header.empty .bio-properties-panel-add-entry:hover {
1140
+ margin-right: 19px;
1141
+ }
1142
+
1143
+ .bio-properties-panel-group-header.empty .bio-properties-panel-add-entry-label {
1144
+ display: none;
1145
+ color: var(--add-entry-label-color);
1146
+ padding: 0 6px 0 2px;
1147
+ }
1148
+
1149
+ .bio-properties-panel-group-header-button.bio-properties-panel-add-entry:hover {
1150
+ background-color: var(--add-entry-hover-background-color);
1151
+ fill: var(--add-entry-hover-fill-color);
1152
+ }
1153
+
1154
+ .bio-properties-panel-group-header-button.bio-properties-panel-add-entry:hover .bio-properties-panel-add-entry-label {
1155
+ display: block;
1156
+ }
1157
+
1158
+ .bio-properties-panel-group-entries {
1159
+ display: none;
1160
+ }
1161
+
1162
+ .bio-properties-panel-group-entries.open {
1163
+ display: block;
1164
+ }
1165
+
1166
+ .bio-properties-panel-arrow {
1167
+ display: flex;
1168
+ justify-content: center;
1169
+ text-align: center;
1170
+ fill: var(--arrow-fill-color);
1171
+ min-width: 22px;
1172
+ border-radius: 11px;
1173
+ border: none;
1174
+ background: none;
1175
+ }
1176
+
1177
+ .bio-properties-panel-arrow:hover {
1178
+ background-color: var(--arrow-hover-background-color);
1179
+ }
1180
+
1181
+ .bio-properties-panel-arrow-down {
1182
+ transform: rotate(90deg);
1183
+ }
1184
+
1185
+ .bio-properties-panel-dot {
1186
+ align-self: center;
1187
+ height: 8px;
1188
+ min-width: 8px;
1189
+ border-radius: 50%;
1190
+ margin: 12px;
1191
+ background-color: var(--dot-color);
1192
+ }
1193
+
1194
+ .bio-properties-panel-dot--error {
1195
+ --dot-color: var(--dot-color-error);
1196
+ }
1197
+
1198
+ /**
1199
+ * Lists
1200
+ */
1201
+ .bio-properties-panel-list {
1202
+ display: none;
1203
+ }
1204
+
1205
+ .bio-properties-panel-list.open {
1206
+ display: block;
1207
+ margin-bottom: 6px;
1208
+ padding-bottom: 2px;
1209
+ }
1210
+
1211
+ .bio-properties-panel-list-badge {
1212
+ height: 22px;
1213
+ min-width: 22px;
1214
+ color: var(--list-badge-color);
1215
+ border-radius: 11px;
1216
+ font-size: var(--text-size-small);
1217
+ line-height: 22px;
1218
+ text-align: center;
1219
+ user-select: none;
1220
+ padding: 0 5px;
1221
+ margin: 5px;
1222
+ background-color: var(--list-badge-background-color);
1223
+ }
1224
+
1225
+ .bio-properties-panel-list-badge--error {
1226
+ --list-badge-background-color: var(--dot-color-error);
1227
+ }
1228
+
1229
+ /**
1230
+ * Basic entries
1231
+ */
1232
+ .bio-properties-panel-entry {
1233
+ margin: 2px 32px 6px 12px;
1234
+ }
1235
+
1236
+ .bio-properties-panel-entry:last-child {
1237
+ padding-bottom: 10px;
1238
+ }
1239
+
1240
+ .bio-properties-panel-label {
1241
+ display: block;
1242
+ font-size: var(--text-size-small);
1243
+ margin: 2px 0 1px;
1244
+ }
1245
+
1246
+ .bio-properties-panel-description,
1247
+ .bio-properties-panel-description p,
1248
+ .bio-properties-panel-description span,
1249
+ .bio-properties-panel-description div {
1250
+ color: var(--description-color);
1251
+ display: block;
1252
+ margin: 2px 0 4px;
1253
+ line-height: var(--line-height-condensed);
1254
+ font-weight: 400;
1255
+ font-size: var(--text-size-small);
1256
+ }
1257
+
1258
+ .bio-properties-panel-description code {
1259
+ color: var(--description-color);
1260
+ font-family: var(--font-family);
1261
+ font-size: var(--text-size-small);
1262
+ line-height: var(--line-height-condensed);
1263
+ padding: 0 2px;
1264
+ background-color: var(--description-code-background-color);
1265
+ border: 1px solid var(--description-code-border-color);
1266
+ border-radius: 3px;
1267
+ }
1268
+
1269
+ .bio-properties-panel-description pre code {
1270
+ width: 100%;
1271
+ display: block;
1272
+ overflow-x: auto;
1273
+ padding: 4px 6px;
1274
+ font-family: var(--font-family-monospace);
1275
+ }
1276
+
1277
+ .bio-properties-panel-description ul {
1278
+ padding: 0;
1279
+ margin: 0 0 0 12px;
1280
+ list-style-type: disc;
1281
+ }
1282
+
1283
+ .bio-properties-panel-description li {
1284
+ color: var(--description-list-item-color);
1285
+ margin: 0 0 0 12px;
1286
+ }
1287
+
1288
+ .bio-properties-panel-description a {
1289
+ color: var(--link-color);
1290
+ font-size: var(--text-size-small);
1291
+ text-decoration: underline;
1292
+ }
1293
+
1294
+ .bio-properties-panel-feelers-editor.bio-properties-panel-input {
1295
+ padding: 0;
1296
+ }
1297
+
1298
+ .bio-properties-panel-feelers-input .cm-editor {
1299
+ min-height: 32px;
1300
+ max-height: 215px;
1301
+ background-color: transparent;
1302
+ }
1303
+
1304
+ .bio-properties-panel-feelers-editor .cm-editor.cm-focused,
1305
+ .bio-properties-panel-feelers-input .cm-editor.cm-focused {
1306
+ outline: none;
1307
+ }
1308
+
1309
+ .bio-properties-panel-input {
1310
+ padding: 3px 6px 2px;
1311
+ border: 1px solid var(--input-border-color);
1312
+ border-radius: 2px;
1313
+ background-color: var(--input-background-color);
1314
+ font-size: var(--text-size-base);
1315
+ font-family: inherit;
1316
+ }
1317
+
1318
+ .bio-properties-panel-input[type=number],
1319
+ select.bio-properties-panel-input,
1320
+ textarea.bio-properties-panel-input,
1321
+ .bio-properties-panel-input[type=text] {
1322
+ display: block;
1323
+ width: 100%;
1324
+ }
1325
+
1326
+ textarea.bio-properties-panel-input {
1327
+ min-height: 28px;
1328
+ }
1329
+
1330
+ .bio-properties-panel-input:focus,
1331
+ .bio-properties-panel-input:focus-within {
1332
+ outline: none;
1333
+ background-color: var(--input-focus-background-color);
1334
+ border: 1px solid var(--input-focus-border-color);
1335
+ }
1336
+
1337
+ .bio-properties-panel-textfield:focus-within,
1338
+ .bio-properties-panel-feel-entry:focus-within {
1339
+ --input-background-color: var(--input-focus-background-color);
1340
+ --input-border-color: var(--input-focus-border-color);
1341
+ }
1342
+
1343
+ .bio-properties-panel-input:disabled {
1344
+ border-color: var(--input-disabled-border-color);
1345
+ background-color: var(--input-disabled-background-color);
1346
+ color: var(--input-disabled-color);
1347
+ }
1348
+
1349
+ select.bio-properties-panel-input {
1350
+ padding: 4px 6px;
1351
+ }
1352
+
1353
+ .bio-properties-panel-input-monospace {
1354
+ font-family: var(--font-family-monospace);
1355
+ }
1356
+
1357
+ .bio-properties-panel-input[type=checkbox], .bio-properties-panel-input[type=radio] {
1358
+ margin: 0;
1359
+ vertical-align: middle;
1360
+ }
1361
+
1362
+ .bio-properties-panel-input[type=checkbox]:focus {
1363
+ outline: auto;
1364
+ outline-color: var(--focus-outline-color);
1365
+ outline-offset: 2px;
1366
+ }
1367
+
1368
+ .bio-properties-panel-checkbox > .bio-properties-panel-label {
1369
+ display: inline-block;
1370
+ font-size: var(--text-size-base);
1371
+ margin-left: 6px;
1372
+ margin-top: auto;
1373
+ vertical-align: middle;
1374
+ }
1375
+
1376
+ .bio-properties-panel-checkbox-entry + .bio-properties-panel-checkbox-entry {
1377
+ margin-top: -8px;
1378
+ }
1379
+
1380
+ .bio-properties-panel-checkbox-entry > .bio-properties-panel-description {
1381
+ margin-left: 18px;
1382
+ }
1383
+
1384
+ textarea.bio-properties-panel-input {
1385
+ resize: vertical;
1386
+ }
1387
+
1388
+ .bio-properties-panel-entry.has-error .bio-properties-panel-input,
1389
+ .bio-properties-panel-entry.has-error .bio-properties-panel-feel-editor__open-popup-placeholder {
1390
+ border-color: var(--input-error-border-color);
1391
+ background-color: var(--input-error-background-color);
1392
+ }
1393
+
1394
+ .bio-properties-panel-entry.has-error .bio-properties-panel-feel-indicator {
1395
+ border-color: var(--input-error-border-color);
1396
+ }
1397
+
1398
+ .bio-properties-panel-entry.has-error .bio-properties-panel-input:focus,
1399
+ .bio-properties-panel-entry.has-error .bio-properties-panel-feel-indicator:focus {
1400
+ border-color: var(--input-error-focus-border-color);
1401
+ }
1402
+
1403
+ .bio-properties-panel-entry .bio-properties-panel-error {
1404
+ color: var(--text-error-color);
1405
+ margin: 4px 0;
1406
+ font-size: var(--text-size-small);
1407
+ }
1408
+
1409
+ .bio-properties-panel-simple {
1410
+ width: 100%;
1411
+ margin-right: 8px;
1412
+ }
1413
+
1414
+ .bio-properties-panel-simple + .bio-properties-panel-remove-entry {
1415
+ margin: auto;
1416
+ }
1417
+
1418
+ /**
1419
+ * Toggle Switch
1420
+ */
1421
+ .bio-properties-panel-toggle-switch-entry + .bio-properties-panel-toggle-switch-entry {
1422
+ margin-top: -8px;
1423
+ }
1424
+
1425
+ .bio-properties-panel-toggle-switch-entry > .bio-properties-panel-description {
1426
+ margin-left: 38px;
1427
+ }
1428
+
1429
+ .bio-properties-panel-toggle-switch .bio-properties-panel-field-wrapper {
1430
+ display: flex;
1431
+ flex-direction: row;
1432
+ align-items: center;
1433
+ }
1434
+
1435
+ .bio-properties-panel-toggle-switch.inline {
1436
+ display: flex;
1437
+ flex-direction: row;
1438
+ }
1439
+
1440
+ .bio-properties-panel-toggle-switch.inline .bio-properties-panel-field-wrapper {
1441
+ margin-left: auto;
1442
+ }
1443
+
1444
+ .bio-properties-panel-toggle-switch > .bio-properties-panel-label {
1445
+ font-size: var(--text-size-base);
1446
+ }
1447
+
1448
+ .bio-properties-panel-toggle-switch.inline > .bio-properties-panel-label {
1449
+ font-size: var(--text-size-small);
1450
+ }
1451
+
1452
+ .bio-properties-panel-toggle-switch .bio-properties-panel-toggle-switch__label {
1453
+ margin: 0;
1454
+ margin-left: 6px;
1455
+ font-size: var(--text-size-base);
1456
+ }
1457
+
1458
+ .bio-properties-panel-toggle-switch .bio-properties-panel-toggle-switch__switcher {
1459
+ position: relative;
1460
+ width: 32px;
1461
+ height: 16px;
1462
+ }
1463
+
1464
+ .bio-properties-panel-toggle-switch .bio-properties-panel-toggle-switch__switcher:focus-within {
1465
+ outline: 2px solid var(--input-focus-border-color);
1466
+ outline-offset: 1px;
1467
+ }
1468
+
1469
+ .bio-properties-panel-toggle-switch .bio-properties-panel-toggle-switch__switcher input[type=checkbox] {
1470
+ opacity: 0;
1471
+ width: 0;
1472
+ height: 0;
1473
+ }
1474
+
1475
+ .bio-properties-panel-toggle-switch .bio-properties-panel-toggle-switch__switcher .bio-properties-panel-toggle-switch__slider {
1476
+ position: absolute;
1477
+ cursor: pointer;
1478
+ top: 0;
1479
+ left: 0;
1480
+ right: 0;
1481
+ bottom: 0;
1482
+ background-color: var(--toggle-switch-off-background-color);
1483
+ -webkit-transition: 0.4s;
1484
+ transition: 0.4s;
1485
+ border-radius: 34px;
1486
+ }
1487
+
1488
+ .bio-properties-panel-toggle-switch .bio-properties-panel-toggle-switch__switcher .bio-properties-panel-toggle-switch__slider:before {
1489
+ position: absolute;
1490
+ content: "";
1491
+ height: 12px;
1492
+ width: 12px;
1493
+ left: 2px;
1494
+ bottom: 2px;
1495
+ background-color: var(--toggle-switch-switcher-background-color);
1496
+ -webkit-transition: 0.4s;
1497
+ transition: 0.4s;
1498
+ border-radius: 50%;
1499
+ }
1500
+
1501
+ .bio-properties-panel-toggle-switch .bio-properties-panel-toggle-switch__switcher input[type=checkbox]:checked + .bio-properties-panel-toggle-switch__slider {
1502
+ background-color: var(--toggle-switch-on-background-color);
1503
+ box-shadow: 0 0 1px;
1504
+ }
1505
+
1506
+ .bio-properties-panel-toggle-switch .bio-properties-panel-toggle-switch__switcher input[type=checkbox]:checked + .bio-properties-panel-toggle-switch__slider:before {
1507
+ -webkit-transform: translateX(16px);
1508
+ -ms-transform: translateX(16px);
1509
+ transform: translateX(16px);
1510
+ }
1511
+
1512
+ /**
1513
+ * Collapsible entries
1514
+ */
1515
+ .bio-properties-panel-collapsible-entry-entries {
1516
+ position: relative;
1517
+ display: none;
1518
+ }
1519
+
1520
+ .bio-properties-panel-collapsible-entry-entries .bio-properties-panel-entry:last-child {
1521
+ padding-bottom: 0;
1522
+ }
1523
+
1524
+ .bio-properties-panel-collapsible-entry-entries.open {
1525
+ display: block;
1526
+ }
1527
+
1528
+ .bio-properties-panel-collapsible-entry-entries {
1529
+ padding-left: 20px;
1530
+ margin-bottom: 10px;
1531
+ position: relative;
1532
+ display: none;
1533
+ }
1534
+
1535
+ .bio-properties-panel-collapsible-entry-header {
1536
+ position: relative;
1537
+ display: flex;
1538
+ justify-content: space-between;
1539
+ align-items: center;
1540
+ overflow: hidden;
1541
+ }
1542
+
1543
+ .bio-properties-panel-collapsible-entry-header .bio-properties-panel-collapsible-entry-header-title {
1544
+ padding: 2px 24px 2px 32px;
1545
+ font-size: var(--text-size-base);
1546
+ white-space: nowrap;
1547
+ overflow: hidden;
1548
+ text-overflow: ellipsis;
1549
+ user-select: none;
1550
+ }
1551
+
1552
+ .bio-properties-panel-collapsible-entry-arrow {
1553
+ position: absolute;
1554
+ top: 2px;
1555
+ left: 6px;
1556
+ padding: 0 3px;
1557
+ height: 22px;
1558
+ display: inline-flex;
1559
+ justify-content: center;
1560
+ align-items: center;
1561
+ align-self: center;
1562
+ }
1563
+
1564
+ .bio-properties-panel-remove-entry {
1565
+ display: flex;
1566
+ align-items: center;
1567
+ justify-content: center;
1568
+ margin-right: 5px;
1569
+ padding: 0;
1570
+ width: 22px;
1571
+ height: 22px;
1572
+ fill: var(--remove-entry-fill-color);
1573
+ border-radius: 50%;
1574
+ border: none;
1575
+ background: none;
1576
+ visibility: hidden;
1577
+ }
1578
+
1579
+ .bio-properties-panel-remove-entry:hover {
1580
+ background-color: var(--remove-entry-hover-background-color);
1581
+ }
1582
+
1583
+ .bio-properties-panel-list-entry-item:hover .bio-properties-panel-remove-list-entry,
1584
+ .bio-properties-panel-collapsible-entry:hover > .bio-properties-panel-collapsible-entry-header .bio-properties-panel-remove-entry,
1585
+ .bio-properties-panel-collapsible-entry:focus-within > .bio-properties-panel-collapsible-entry-header .bio-properties-panel-remove-entry {
1586
+ visibility: visible;
1587
+ }
1588
+
1589
+ /* Side line */
1590
+ .bio-properties-panel-collapsible-entry-entries::before {
1591
+ content: "";
1592
+ position: absolute;
1593
+ left: 16px;
1594
+ width: 2px;
1595
+ top: -6px;
1596
+ bottom: 12px;
1597
+ background-color: var(--side-line-background-color);
1598
+ border-radius: 1px;
1599
+ }
1600
+
1601
+ /* Side line extension for non-list entry or open list entry positioned as the last one. */
1602
+ .bio-properties-panel-collapsible-entry-entries .bio-properties-panel-entry:not(.bio-properties-panel-list-entry):last-child,
1603
+ .bio-properties-panel-list-entry.open:last-child {
1604
+ position: relative;
1605
+ }
1606
+
1607
+ .bio-properties-panel-collapsible-entry-entries .bio-properties-panel-entry:not(.bio-properties-panel-list-entry):last-child::after,
1608
+ .bio-properties-panel-list-entry.open:last-child::after {
1609
+ content: "";
1610
+ position: absolute;
1611
+ left: -16px;
1612
+ width: 2px;
1613
+ top: 0;
1614
+ bottom: -4px;
1615
+ background-color: var(--side-line-extension-background-color);
1616
+ border-radius: 1px;
1617
+ }
1618
+
1619
+ .bio-properties-panel-list-entry-item .bio-properties-panel-collapsible-entry-entries .bio-properties-panel-entry:last-child::after {
1620
+ left: -18px;
1621
+ }
1622
+
1623
+ /*
1624
+ * List entry
1625
+ */
1626
+ .bio-properties-panel-list-entry {
1627
+ position: relative;
1628
+ margin-right: 5px;
1629
+ margin-bottom: 0;
1630
+ }
1631
+
1632
+ .bio-properties-panel-list-entry .bio-properties-panel-entry {
1633
+ margin-right: 0;
1634
+ }
1635
+
1636
+ .bio-properties-panel-list-entry-header {
1637
+ position: sticky;
1638
+ overflow: hidden;
1639
+ display: flex;
1640
+ justify-content: space-between;
1641
+ height: 32px;
1642
+ }
1643
+
1644
+ .bio-properties-panel-list-entry-header.sticky {
1645
+ background-color: var(--color-white);
1646
+ border-bottom: 1px solid var(--sticky-group-bottom-border-color);
1647
+ top: 32px;
1648
+ z-index: 9;
1649
+ }
1650
+
1651
+ /* Nested list dot */
1652
+ .bio-properties-panel-list-entry::before {
1653
+ content: "";
1654
+ width: 8px;
1655
+ height: 8px;
1656
+ position: absolute;
1657
+ left: -19px;
1658
+ top: 13px;
1659
+ border-radius: 50%;
1660
+ background-color: var(--list-entry-dot-background-color);
1661
+ }
1662
+
1663
+ .bio-properties-panel-list-entry-header-title {
1664
+ display: block;
1665
+ margin: auto 0;
1666
+ padding: 2px 0;
1667
+ font-size: var(--text-size-base);
1668
+ white-space: nowrap;
1669
+ overflow: hidden;
1670
+ text-overflow: ellipsis;
1671
+ }
1672
+
1673
+ .bio-properties-panel-list-entry-header-title.open {
1674
+ font-weight: 500;
1675
+ }
1676
+
1677
+ .bio-properties-panel-list-entry-header-buttons {
1678
+ display: flex;
1679
+ align-items: center;
1680
+ }
1681
+
1682
+ .bio-properties-panel-list-entry-header-buttons > button {
1683
+ display: inline-flex;
1684
+ justify-content: center;
1685
+ align-items: center;
1686
+ align-self: center;
1687
+ height: 22px;
1688
+ line-height: 22px;
1689
+ min-width: 22px;
1690
+ margin: 5px;
1691
+ padding: 0 3px;
1692
+ border: none;
1693
+ background: none;
1694
+ fill: var(--list-entry-header-button-fill-color);
1695
+ }
1696
+
1697
+ .bio-properties-panel-list-entry-header-buttons > :last-child {
1698
+ margin-right: 0;
1699
+ }
1700
+
1701
+ .bio-properties-panel-list-entry-items {
1702
+ padding: 0;
1703
+ margin: 0;
1704
+ list-style: none;
1705
+ }
1706
+
1707
+ .bio-properties-panel-list-entry-items:not(.open) {
1708
+ display: none;
1709
+ }
1710
+
1711
+ .bio-properties-panel-list-entry-item {
1712
+ display: flex;
1713
+ justify-content: space-between;
1714
+ }
1715
+
1716
+ .bio-properties-panel-list-entry-item .bio-properties-panel-remove-entry {
1717
+ margin-right: 1px;
1718
+ }
1719
+
1720
+ .bio-properties-panel-list-entry-item .bio-properties-panel-collapsible-entry {
1721
+ width: 100%;
1722
+ margin-right: 4px;
1723
+ }
1724
+
1725
+ .bio-properties-panel-list-entry-item .bio-properties-panel-collapsible-entry-header {
1726
+ margin-left: -8px;
1727
+ }
1728
+
1729
+ .bio-properties-panel-list-entry-item .bio-properties-panel-collapsible-entry-arrow {
1730
+ left: 2px;
1731
+ }
1732
+
1733
+ .bio-properties-panel-list-entry-item .bio-properties-panel-collapsible-entry-header-title {
1734
+ padding-left: 30px;
1735
+ }
1736
+
1737
+ .bio-properties-panel-list-entry-item .bio-properties-panel-collapsible-entry-entries {
1738
+ padding-left: 10px;
1739
+ }
1740
+
1741
+ .bio-properties-panel-list-entry-item .bio-properties-panel-collapsible-entry-entries::before {
1742
+ left: 4px;
1743
+ }
1744
+
1745
+ .bio-properties-panel-list-entry.empty .bio-properties-panel-add-entry {
1746
+ margin-right: 16px;
1747
+ padding-left: 6px;
1748
+ }
1749
+
1750
+ .bio-properties-panel-list-entry.empty .bio-properties-panel-add-entry-label {
1751
+ color: var(--list-entry-add-entry-label-color);
1752
+ padding: 4px 6px 3px 2px;
1753
+ }
1754
+
1755
+ .bio-properties-panel-list-entry-header-buttons .bio-properties-panel-add-entry:hover {
1756
+ background-color: var(--list-entry-add-entry-background-color);
1757
+ fill: var(--list-entry-add-entry-fill-color);
1758
+ }
1759
+
1760
+ .bio-properties-panel-list-entry-item .bio-properties-panel-simple .bio-properties-panel-input {
1761
+ border-radius: 0;
1762
+ margin-bottom: -2px;
1763
+ }
1764
+
1765
+ .bio-properties-panel-list-entry-item:first-child .bio-properties-panel-simple .bio-properties-panel-input {
1766
+ border-top-left-radius: 2px;
1767
+ border-top-right-radius: 2px;
1768
+ }
1769
+
1770
+ .bio-properties-panel-list-entry-item:last-child .bio-properties-panel-simple .bio-properties-panel-input {
1771
+ border-bottom-left-radius: 2px;
1772
+ border-bottom-right-radius: 2px;
1773
+ }
1774
+
1775
+ .bio-properties-panel-dropdown-button {
1776
+ position: relative;
1777
+ --dropdown-button-margin: 5px;
1778
+ }
1779
+
1780
+ .bio-properties-panel-dropdown-button:not(.open) .bio-properties-panel-dropdown-button__menu {
1781
+ display: none;
1782
+ }
1783
+
1784
+ .bio-properties-panel-dropdown-button__menu {
1785
+ min-width: calc(100% - var(--dropdown-button-margin) * 2);
1786
+ max-width: 240px;
1787
+ position: absolute;
1788
+ top: calc(100% - var(--dropdown-button-margin));
1789
+ right: var(--dropdown-button-margin);
1790
+ z-index: 101;
1791
+ background-color: var(--dropdown-item-background-color);
1792
+ padding: 8px 0;
1793
+ box-shadow: 0 1px 4px 0 var(--color-grey-225-10-85), 0 2px 16px 0 var(--color-grey-225-10-75);
1794
+ }
1795
+
1796
+ .bio-properties-panel-dropdown-button__menu-item {
1797
+ display: block;
1798
+ width: 100%;
1799
+ padding: 4px 12px;
1800
+ font-size: var(--text-size-small);
1801
+ appearance: revert;
1802
+ border: unset;
1803
+ background: unset;
1804
+ text-align: unset;
1805
+ }
1806
+
1807
+ .bio-properties-panel-dropdown-button__menu-item--separator {
1808
+ width: 100%;
1809
+ height: 1px;
1810
+ padding: 0;
1811
+ margin: 8px 0;
1812
+ background-color: var(--dropdown-separator-background-color);
1813
+ }
1814
+
1815
+ .bio-properties-panel-dropdown-button__menu-item--actionable {
1816
+ font-size: var(--text-size-base);
1817
+ }
1818
+
1819
+ .bio-properties-panel-dropdown-button__menu-item--actionable:hover {
1820
+ background-color: var(--dropdown-item-hover-background-color);
1821
+ }
1822
+
1823
+ .bio-properties-panel-feel-input {
1824
+ position: relative;
1825
+ }
1826
+
1827
+ .bio-properties-panel-feel-input input {
1828
+ padding-right: 2em;
1829
+ }
1830
+
1831
+ .bio-properties-panel-feel-entry .bio-properties-panel-label {
1832
+ display: flex;
1833
+ }
1834
+
1835
+ .bio-properties-panel-feel-icon {
1836
+ display: inline-flex;
1837
+ height: 18px;
1838
+ width: 22px;
1839
+ vertical-align: text-bottom;
1840
+ padding: 0;
1841
+ margin: 0 3px;
1842
+ align-items: center;
1843
+ align-self: center;
1844
+ justify-content: center;
1845
+ border: none;
1846
+ background: none;
1847
+ border-radius: 3px;
1848
+ }
1849
+
1850
+ .bio-properties-panel-feel-icon.optional {
1851
+ cursor: pointer;
1852
+ background: var(--feel-background-color);
1853
+ }
1854
+
1855
+ .bio-properties-panel-feel-icon svg * {
1856
+ fill: var(--feel-inactive-color);
1857
+ }
1858
+
1859
+ .bio-properties-panel-feel-icon:hover {
1860
+ background: var(--feel-hover-background-color);
1861
+ }
1862
+
1863
+ .bio-properties-panel-feel-icon:hover svg * {
1864
+ fill: var(--feel-hover-color);
1865
+ }
1866
+
1867
+ .bio-properties-panel-feel-icon.active {
1868
+ background: var(--feel-active-background-color);
1869
+ }
1870
+
1871
+ .bio-properties-panel-feel-icon.active:hover {
1872
+ background: var(--feel-hover-background-color);
1873
+ }
1874
+
1875
+ .bio-properties-panel-feel-icon.required.active {
1876
+ background: none;
1877
+ }
1878
+
1879
+ .bio-properties-panel-feel-icon.active svg * {
1880
+ fill: var(--feel-active-color);
1881
+ }
1882
+
1883
+ .bio-properties-panel-feel-icon.required.active svg * {
1884
+ fill: var(--feel-required-color);
1885
+ }
1886
+
1887
+ .bio-properties-panel-feel-editor-container {
1888
+ position: relative;
1889
+ }
1890
+
1891
+ .bio-properties-panel-feel-editor-container.active {
1892
+ font-family: var(--font-family-monospace);
1893
+ }
1894
+
1895
+ .bio-properties-panel-feel-container {
1896
+ position: relative;
1897
+ }
1898
+
1899
+ .bio-properties-panel-feel-container .bio-properties-panel-feel-editor-container > div {
1900
+ position: static;
1901
+ padding-left: 2.4em !important;
1902
+ min-height: 28px;
1903
+ }
1904
+
1905
+ .bio-properties-panel-feel-indicator {
1906
+ position: absolute;
1907
+ border: 1px solid var(--input-border-color);
1908
+ background-color: var(--feel-indicator-background-color);
1909
+ border-right: 0px;
1910
+ border-radius: 2px 0 0 2px;
1911
+ z-index: 1;
1912
+ height: 100%;
1913
+ width: 2em;
1914
+ text-align: center;
1915
+ padding: 2px 6px;
1916
+ }
1917
+
1918
+ .bio-properties-panel-feel-editor-container .cm-scroller {
1919
+ overflow: hidden !important;
1920
+ }
1921
+
1922
+ .bio-properties-panel-feelers-editor .cm-editor {
1923
+ background-color: transparent;
1924
+ }
1925
+
1926
+ /* @Note(pinussilvestrus): mitigate low contrast - https://github.com/bpmn-io/cm-theme/issues/4 */
1927
+ .bio-properties-panel-feelers-editor .cm-content ::selection {
1928
+ background: var(--feelers-select-color, hsl(205, 100%, 85%));
1929
+ }
1930
+
1931
+ .bio-properties-panel-feelers-editor .cm-editor.cm-focused {
1932
+ background-color: transparent;
1933
+ }
1934
+
1935
+ .bio-properties-panel-feel-editor-container .bio-properties-panel-input {
1936
+ resize: none;
1937
+ overflow: hidden;
1938
+ overflow-y: auto;
1939
+ }
1940
+
1941
+ .bio-properties-panel-feel-editor-container,
1942
+ .bio-properties-panel-feel-editor-container .bio-properties-panel-input,
1943
+ .bio-properties-panel-feel-container .cm-editor {
1944
+ min-height: 100%;
1945
+ }
1946
+
1947
+ .bio-properties-panel-feel-checkbox,
1948
+ .bio-properties-panel-feel-toggle-switch {
1949
+ padding-top: 1px;
1950
+ }
1951
+
1952
+ .bio-properties-panel-feel-checkbox .bio-properties-panel-feel-entry:not(.feel-active),
1953
+ .bio-properties-panel-feel-toggle-switch .bio-properties-panel-feel-entry:not(.feel-active) {
1954
+ display: flex;
1955
+ flex-direction: row;
1956
+ align-items: center;
1957
+ }
1958
+
1959
+ .bio-properties-panel-feel-checkbox .bio-properties-panel-feel-entry:not(.feel-active) .bio-properties-panel-feel-container,
1960
+ .bio-properties-panel-feel-toggle-switch .bio-properties-panel-feel-entry:not(.feel-active) .bio-properties-panel-feel-container {
1961
+ margin-left: auto;
1962
+ }
1963
+
1964
+ .bio-properties-panel-tooltip-wrapper {
1965
+ text-decoration: underline;
1966
+ text-decoration-style: dotted;
1967
+ text-underline-offset: 2px;
1968
+ font: inherit;
1969
+ display: flex;
1970
+ justify-content: center;
1971
+ width: fit-content;
1972
+ }
1973
+
1974
+ .bio-properties-panel-tooltip {
1975
+ --tooltip-underline-color: var(--color-blue-219-99-53);
1976
+ --tooltip-background-color: var(--color-grey-0-0-22);
1977
+ --tooltip-link: var(--color-blue-218-100-74);
1978
+ --tooltip-code-background-color: var(--color-grey-225-10-97);
1979
+ --tooltip-code-border-color: var(--color-grey-225-10-85);
1980
+ display: flex;
1981
+ color: var(--color-white, white);
1982
+ position: fixed;
1983
+ z-index: 1001;
1984
+ max-width: 300px;
1985
+ font-size: var(--text-size-small);
1986
+ font-family: var(--font-family);
1987
+ }
1988
+
1989
+ .bio-properties-panel-tooltip.right {
1990
+ padding-right: 6px;
1991
+ }
1992
+
1993
+ .bio-properties-panel-tooltip.top {
1994
+ flex-direction: column;
1995
+ }
1996
+
1997
+ .bio-properties-panel-tooltip-content {
1998
+ background-color: var(--tooltip-background-color);
1999
+ padding: 16px;
2000
+ border-radius: 2px;
2001
+ font-weight: 400;
2002
+ white-space: pre-wrap;
2003
+ }
2004
+
2005
+ .bio-properties-panel-tooltip-content h1 {
2006
+ font-size: var(--text-size-base);
2007
+ font-weight: bold;
2008
+ margin: 0;
2009
+ }
2010
+
2011
+ .bio-properties-panel-tooltip-content code,
2012
+ .bio-properties-panel-tooltip-content pre {
2013
+ color: var(--description-color);
2014
+ font-family: var(--font-family);
2015
+ font-size: var(--text-size-small);
2016
+ line-height: var(--line-height-condensed);
2017
+ padding: 0 2px;
2018
+ background-color: var(--tooltip-code-background-color);
2019
+ border: 1px solid var(--tooltip-code-border-color);
2020
+ border-radius: 3px;
2021
+ }
2022
+
2023
+ .bio-properties-panel-tooltip-content pre code {
2024
+ border: none;
2025
+ }
2026
+
2027
+ .bio-properties-panel-tooltip p:first-child {
2028
+ margin-top: 0;
2029
+ }
2030
+
2031
+ .bio-properties-panel-tooltip p:last-child {
2032
+ margin-bottom: 0;
2033
+ }
2034
+
2035
+ .bio-properties-panel-tooltip-content a {
2036
+ color: var(--tooltip-link);
2037
+ }
2038
+
2039
+ .bio-properties-panel-tooltip .bio-properties-panel-tooltip-arrow {
2040
+ width: 0;
2041
+ height: 0;
2042
+ border-top: 5px solid transparent;
2043
+ border-bottom: 5px solid transparent;
2044
+ border-left: 5px solid var(--tooltip-background-color);
2045
+ margin-top: 16px;
2046
+ }
2047
+
2048
+ .bio-properties-panel-tooltip.top .bio-properties-panel-tooltip-arrow {
2049
+ margin-top: -3px;
2050
+ margin-left: calc(50% - 2.5px);
2051
+ transform: rotate(90deg);
2052
+ }
2053
+
2054
+ .bio-properties-panel-feelers-editor-container .bio-properties-panel-feelers-editor__open-popup-placeholder,
2055
+ .bio-properties-panel-feel-editor-container .bio-properties-panel-feel-editor__open-popup-placeholder {
2056
+ display: none;
2057
+ justify-content: center;
2058
+ flex-direction: column;
2059
+ color: hsla(0, 0%, 9%, 0.25);
2060
+ padding: 3px 6px 2px;
2061
+ border: 1px solid var(--input-border-color);
2062
+ border-radius: 2px;
2063
+ background-color: var(--input-background-color);
2064
+ font-size: var(--text-size-base);
2065
+ font-family: inherit;
2066
+ width: 100%;
2067
+ min-height: 100%;
2068
+ }
2069
+
2070
+ .bio-properties-panel-feelers-editor-container.popupOpen .bio-properties-panel-input,
2071
+ .bio-properties-panel-feel-editor-container.popupOpen .bio-properties-panel-input {
2072
+ display: none;
2073
+ }
2074
+
2075
+ .bio-properties-panel-feelers-editor-container.popupOpen .bio-properties-panel-feelers-editor__open-popup-placeholder,
2076
+ .bio-properties-panel-feel-editor-container.popupOpen .bio-properties-panel-feel-editor__open-popup-placeholder {
2077
+ display: flex;
2078
+ }
2079
+
2080
+ .bio-properties-panel-popup {
2081
+ --popup-background-color: hsla(0, 0%, 96%, 1);
2082
+ --popup-header-background-color: white;
2083
+ --popup-font-color: hsla(0, 0%, 0%, 1);
2084
+ --popup-title-color: hsla(0, 0%, 0%, 1);
2085
+ --feel-popup-close-background-color: hsla(219, 99%, 53%, 1);
2086
+ --feel-popup-gutters-background-color: hsla(0, 0%, 90%, 1);
2087
+ position: fixed;
2088
+ display: flex;
2089
+ flex: auto;
2090
+ flex-direction: column;
2091
+ font-family: IBM Plex Sans, sans-serif;
2092
+ padding: 0;
2093
+ z-index: 1001;
2094
+ box-shadow: 0px 2px 6px 0px hsla(0, 0%, 0%, 0.3);
2095
+ background-color: var(--popup-background-color);
2096
+ color: var(--popup-font-color);
2097
+ height: auto;
2098
+ width: auto;
2099
+ overflow: hidden;
2100
+ font-size: 14px;
2101
+ }
2102
+
2103
+ .bio-properties-panel-popup h1,
2104
+ .bio-properties-panel-popup h2,
2105
+ .bio-properties-panel-popup h3,
2106
+ .bio-properties-panel-popup h4 {
2107
+ font-weight: 500;
2108
+ font-size: inherit;
2109
+ }
2110
+
2111
+ .bio-properties-panel-popup .bio-properties-panel-popup__header,
2112
+ .bio-properties-panel-popup .bio-properties-panel-popup__body,
2113
+ .bio-properties-panel-popup .bio-properties-panel-popup__footer {
2114
+ padding: 12px;
2115
+ display: flex;
2116
+ justify-content: center;
2117
+ align-items: center;
2118
+ }
2119
+
2120
+ .bio-properties-panel-popup .bio-properties-panel-popup__body:not(:first-child) {
2121
+ padding-top: 0;
2122
+ padding-left: 0;
2123
+ padding-right: 0;
2124
+ }
2125
+
2126
+ .bio-properties-panel-popup .bio-properties-panel-popup__header {
2127
+ --popup-header-line-height: 16px;
2128
+ background-color: var(--popup-header-background-color);
2129
+ margin: 0;
2130
+ font-size: 12px;
2131
+ font-weight: 400;
2132
+ line-height: var(--popup-header-line-height);
2133
+ text-align: left;
2134
+ color: var(--popup-title-color);
2135
+ }
2136
+
2137
+ .bio-properties-panel-popup .bio-properties-panel-popup__header.draggable {
2138
+ cursor: grab;
2139
+ }
2140
+
2141
+ .bio-properties-panel-popup .bio-properties-panel-popup__drag-handle {
2142
+ display: flex;
2143
+ }
2144
+
2145
+ .bio-properties-panel-popup .bio-properties-panel-popup__drag-preview {
2146
+ width: 1px;
2147
+ height: 1px;
2148
+ position: absolute;
2149
+ top: 0;
2150
+ }
2151
+
2152
+ .bio-properties-panel-popup .bio-properties-panel-popup__title {
2153
+ margin-left: 8px;
2154
+ }
2155
+
2156
+ .bio-properties-panel-popup .bio-properties-panel-popup__title::first-letter {
2157
+ text-transform: capitalize;
2158
+ }
2159
+
2160
+ .bio-properties-panel-popup .bio-properties-panel-popup__close {
2161
+ margin: -12px;
2162
+ margin-left: 12px;
2163
+ width: 40px;
2164
+ height: 40px;
2165
+ border: none;
2166
+ background-color: var(--popup-header-background-color);
2167
+ }
2168
+
2169
+ .bio-properties-panel-popup .bio-properties-panel-popup__close:hover,
2170
+ .bio-properties-panel-popup .bio-properties-panel-popup__close:focus-visible {
2171
+ background-color: var(--popup-background-color);
2172
+ }
2173
+
2174
+ .bio-properties-panel-popup .bio-properties-panel-popup__close:focus-visible {
2175
+ outline-offset: -2px;
2176
+ }
2177
+
2178
+ .bio-properties-panel-popup .bio-properties-panel-popup__close svg {
2179
+ width: 16px;
2180
+ height: 16px;
2181
+ fill: currentColor;
2182
+ margin-top: 2px;
2183
+ }
2184
+
2185
+ .bio-properties-panel-popup .bio-properties-panel-popup__header .bio-properties-panel-popup__drag-handle svg {
2186
+ margin-left: -4px;
2187
+ }
2188
+
2189
+ .bio-properties-panel-popup .bio-properties-panel-popup__body {
2190
+ font-size: inherit;
2191
+ height: 100%;
2192
+ display: flex;
2193
+ overflow: auto;
2194
+ padding-bottom: 0;
2195
+ }
2196
+
2197
+ .bio-properties-panel-popup .bio-properties-panel-popup__footer {
2198
+ position: absolute;
2199
+ bottom: 0;
2200
+ right: 8px;
2201
+ }
2202
+
2203
+ .bio-properties-panel-feel-popup {
2204
+ min-height: 400px;
2205
+ width: fit-content;
2206
+ }
2207
+
2208
+ .bio-properties-panel-feel-popup .bio-properties-panel-feel-popup__body {
2209
+ display: flex;
2210
+ margin: 0;
2211
+ padding: 0;
2212
+ height: 100%;
2213
+ width: 100%;
2214
+ }
2215
+
2216
+ .bio-properties-panel-feel-popup__title-link {
2217
+ margin-left: 8px;
2218
+ display: flex;
2219
+ }
2220
+
2221
+ .bio-properties-panel-feel-popup__title-link:first-of-type {
2222
+ margin-left: auto;
2223
+ }
2224
+
2225
+ .bio-properties-panel-feel-popup__title-link svg {
2226
+ width: var(--popup-header-line-height);
2227
+ height: var(--popup-header-line-height);
2228
+ fill: currentColor;
2229
+ margin: 0 0.5em;
2230
+ }
2231
+
2232
+ .bio-properties-panel-feel-popup .bio-properties-panel-feel-editor-container {
2233
+ display: flex;
2234
+ min-width: 100%;
2235
+ }
2236
+
2237
+ .bio-properties-panel-feel-popup .bio-properties-panel-feel-editor-container .cm-scroller {
2238
+ overflow: auto !important;
2239
+ }
2240
+
2241
+ .bio-properties-panel-feel-popup .bio-properties-panel-feelers-editor-container {
2242
+ width: 100%;
2243
+ display: flex;
2244
+ }
2245
+
2246
+ .bio-properties-panel-feel-popup .bio-properties-panel-feelers-editor-container .bio-properties-panel-feelers-editor {
2247
+ display: flex;
2248
+ }
2249
+
2250
+ .bio-properties-panel-feel-popup .bio-properties-panel-feelers-editor-container .bio-properties-panel-feelers-editor .cm-editor {
2251
+ width: 100%;
2252
+ }
2253
+
2254
+ .bio-properties-panel-feel-popup .bio-properties-panel-input {
2255
+ width: 100%;
2256
+ resize: none;
2257
+ padding: 0;
2258
+ overflow: hidden;
2259
+ overflow-y: auto;
2260
+ }
2261
+
2262
+ .bio-properties-panel-feel-popup .bio-properties-panel-open-feel-popup {
2263
+ display: none !important;
2264
+ }
2265
+
2266
+ .bio-properties-panel-feelers-editor-container .bio-properties-panel-open-feel-popup,
2267
+ .bio-properties-panel-feel-container .bio-properties-panel-open-feel-popup {
2268
+ position: absolute;
2269
+ top: 0;
2270
+ right: 0;
2271
+ line-height: 1;
2272
+ padding: 3px 4px;
2273
+ margin: 3px;
2274
+ display: none;
2275
+ background: none;
2276
+ border: none;
2277
+ color: var(--feel-open-popup-color);
2278
+ cursor: pointer;
2279
+ }
2280
+
2281
+ .bio-properties-panel-feelers-editor-container .bio-properties-panel-open-feel-popup svg,
2282
+ .bio-properties-panel-feel-container .bio-properties-panel-open-feel-popup svg {
2283
+ width: 16px;
2284
+ height: 16px;
2285
+ }
2286
+
2287
+ .bio-properties-panel-feelers-editor-container:hover .bio-properties-panel-open-feel-popup,
2288
+ .bio-properties-panel-feel-container:hover .bio-properties-panel-open-feel-popup,
2289
+ .bio-properties-panel-feelers-editor-container:focus-within .bio-properties-panel-open-feel-popup,
2290
+ .bio-properties-panel-feel-container:focus-within .bio-properties-panel-open-feel-popup {
2291
+ display: block;
2292
+ }
2293
+
2294
+ .bio-properties-panel-feelers-editor-container .bio-properties-panel-open-feel-popup:hover,
2295
+ .bio-properties-panel-feel-container .bio-properties-panel-open-feel-popup:hover {
2296
+ color: var(--feel-open-popup-hover-color);
2297
+ }
2298
+
2299
+ .bio-properties-panel-feel-popup .bio-properties-panel-popup__footer .bio-properties-panel-feel-popup__close-btn {
2300
+ background: var(--feel-popup-close-background-color);
2301
+ width: 66px;
2302
+ font-weight: 400;
2303
+ font-size: 14px;
2304
+ font-family: inherit;
2305
+ color: white;
2306
+ border: none;
2307
+ height: 32px;
2308
+ cursor: pointer;
2309
+ }
2310
+
2311
+ .bio-properties-panel-feel-popup .bio-properties-panel-feel-editor-container .cm-editor {
2312
+ width: 100%;
2313
+ height: 100%;
2314
+ }
2315
+
2316
+ .bio-properties-panel-feel-popup .bio-properties-panel-feel-editor-container .cm-editor .cm-content {
2317
+ padding-left: 4px;
2318
+ }
2319
+
2320
+ .bio-properties-panel-feel-popup .bio-properties-panel-input {
2321
+ border: none;
2322
+ }
2323
+
2324
+ .bio-properties-panel-feel-popup .cm-gutters {
2325
+ background-color: var(--feel-popup-gutters-background-color);
2326
+ border: none;
2327
+ padding: 0;
2328
+ }
2329
+
2330
+ .bio-properties-panel-feel-popup .cm-gutter {
2331
+ min-width: 32px;
2332
+ }
2333
+
2334
+ .bio-properties-panel-feel-popup .cm-gutters .cm-lineNumbers .cm-gutterElement {
2335
+ text-align: center;
2336
+ }
2337
+
2338
+ /* Checkbox Group */
2339
+ .bio-properties-panel-checkbox-group .bio-properties-panel-checkbox-group-entries > .bio-properties-panel-entry {
2340
+ margin: 0;
2341
+ padding: 0;
2342
+ }