cc-core-cli 1.0.138 → 1.0.140

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 (69) hide show
  1. package/package.json +1 -1
  2. package/template/admin/next.config.js +16 -56
  3. package/template/admin/pages/_app.js +5 -4
  4. package/template/admin/public/private-image-worker.js +1 -1
  5. package/template/admin/public/static/styles/activity_log.css +133 -0
  6. package/template/admin/public/static/styles/{calendar.less → calendar.css} +84 -26
  7. package/template/admin/public/static/styles/collections.css +120 -0
  8. package/template/admin/public/static/styles/compute_field.css +244 -0
  9. package/template/admin/public/static/styles/custom-antd.css +109 -0
  10. package/template/admin/public/static/styles/{custom_icon.less → custom_icon.css} +94 -70
  11. package/template/admin/public/static/styles/{date_search.less → date_search.css} +11 -15
  12. package/template/admin/public/static/styles/datepicker.css +301 -0
  13. package/template/admin/public/static/styles/detail.css +2645 -0
  14. package/template/admin/public/static/styles/{editTable.less → editTable.css} +12 -5
  15. package/template/admin/public/static/styles/entities.css +864 -0
  16. package/template/admin/public/static/styles/filter.css +18 -0
  17. package/template/admin/public/static/styles/filter_new.css +152 -0
  18. package/template/admin/public/static/styles/hook.css +140 -0
  19. package/template/admin/public/static/styles/import_export.css +48 -0
  20. package/template/admin/public/static/styles/input.css +77 -0
  21. package/template/admin/public/static/styles/layout.css +1465 -0
  22. package/template/admin/public/static/styles/login.css +269 -0
  23. package/template/admin/public/static/styles/mainheader.css +45 -0
  24. package/template/admin/public/static/styles/matrix.css +90 -0
  25. package/template/admin/public/static/styles/menu.css +60 -0
  26. package/template/admin/public/static/styles/permission_denied.css +13 -0
  27. package/template/admin/public/static/styles/pipeline.css +82 -0
  28. package/template/admin/public/static/styles/print_template.css +659 -0
  29. package/template/admin/public/static/styles/rabbitmq.css +5 -0
  30. package/template/admin/public/static/styles/restful.css +19 -0
  31. package/template/admin/public/static/styles/setting.css +480 -0
  32. package/template/admin/public/static/styles/style.css +1632 -0
  33. package/template/admin/public/static/styles/style_backup.css +1616 -0
  34. package/template/admin/public/static/styles/style_clean.css +51 -0
  35. package/template/admin/public/static/styles/system.css +11 -0
  36. package/template/admin/public/static/styles/theme-override.css +118 -0
  37. package/template/admin/public/static/styles/tree_theme_minimal.css +284 -0
  38. package/template/admin/public/static/styles/versioning_control.css +16 -0
  39. package/template/admin/public/static/styles/wysiwyg.css +3 -0
  40. package/template/admin/theme/main.css +38 -0
  41. package/template/admin/theme/vars.css +10 -0
  42. package/template/admin/public/static/styles/activity_log.less +0 -157
  43. package/template/admin/public/static/styles/collections.less +0 -123
  44. package/template/admin/public/static/styles/compute_field.less +0 -250
  45. package/template/admin/public/static/styles/custom-antd.less +0 -80
  46. package/template/admin/public/static/styles/datepicker.less +0 -323
  47. package/template/admin/public/static/styles/detail.less +0 -2690
  48. package/template/admin/public/static/styles/entities.less +0 -897
  49. package/template/admin/public/static/styles/filter.less +0 -24
  50. package/template/admin/public/static/styles/filter_new.less +0 -154
  51. package/template/admin/public/static/styles/hook.less +0 -142
  52. package/template/admin/public/static/styles/import_export.less +0 -62
  53. package/template/admin/public/static/styles/input.less +0 -386
  54. package/template/admin/public/static/styles/layout.less +0 -1455
  55. package/template/admin/public/static/styles/login.less +0 -263
  56. package/template/admin/public/static/styles/mainheader.less +0 -32
  57. package/template/admin/public/static/styles/matrix.less +0 -105
  58. package/template/admin/public/static/styles/permission_denied.less +0 -13
  59. package/template/admin/public/static/styles/pipeline.less +0 -84
  60. package/template/admin/public/static/styles/print_template.less +0 -730
  61. package/template/admin/public/static/styles/rabbitmq.less +0 -3
  62. package/template/admin/public/static/styles/restful.less +0 -22
  63. package/template/admin/public/static/styles/setting.less +0 -534
  64. package/template/admin/public/static/styles/style.less +0 -1957
  65. package/template/admin/public/static/styles/system.less +0 -11
  66. package/template/admin/public/static/styles/tree_theme_minimal.less +0 -321
  67. package/template/admin/public/static/styles/versioning_control.less +0 -24
  68. package/template/admin/public/static/styles/wysiwyg.less +0 -8
  69. /package/template/admin/public/static/styles/{custom.less → custom.css} +0 -0
@@ -0,0 +1,1632 @@
1
+ /* AntD v5 styles are now imported automatically */
2
+ /* Basic custom styles for the application */
3
+
4
+ /* Import layout styles to match the original style.less behavior */
5
+ @import url("./custom-antd.css");
6
+ @import url("./layout.css");
7
+ @import url("./login.css");
8
+ @import url("./mainheader.css");
9
+ @import url("./system.css");
10
+ @import url("./permission_denied.css");
11
+ @import url("./entities.css");
12
+ @import url("./input.css");
13
+ @import url("./hook.css");
14
+ @import url("./setting.css");
15
+ @import url("./wysiwyg.css");
16
+ @import url("./activity_log.css");
17
+ @import url("./filter.css");
18
+ @import url("./versioning_control.css");
19
+ @import url("./print_template.css");
20
+ @import url("./import_export.css");
21
+ @import url("./compute_field.css");
22
+ @import url("./detail.css");
23
+ @import url("./restful.css");
24
+ @import url("./collections.css");
25
+ @import url("./rabbitmq.css");
26
+ @import url("./custom_icon.css");
27
+ @import url("./filter_new.css");
28
+ @import url("./date_search.css");
29
+ /* @import url("./react-big-calendar/lib/css/react-big-calendar.css"); */
30
+ @import url("./calendar.css");
31
+ @import url("./datepicker.css");
32
+ @import url("./pipeline.css");
33
+ @import url("./tree_theme_minimal.css");
34
+ @import url("./matrix.css");
35
+ @import url("./editTable.css");
36
+ @import url("./menu.css");
37
+ @import url("@xyflow/react/dist/style.css");
38
+
39
+ /*----- Custom table ------*/
40
+ .ant-table-column-sorters {
41
+ padding-left: 0px;
42
+ padding-right: 0px;
43
+ }
44
+
45
+ .header-table-border {
46
+ border-bottom: 1px solid var(--border-color-split);
47
+ }
48
+
49
+ .header-table {
50
+ min-height: 65px;
51
+ }
52
+
53
+ .header-table .right-section {
54
+ padding-right: 15px;
55
+ }
56
+
57
+ .header-table .refresh {
58
+ margin-right: 8px;
59
+ }
60
+
61
+ .header-table .search {
62
+ display: flex;
63
+ max-height: 32px;
64
+ margin-right: 8px;
65
+ }
66
+
67
+ .header-table .btn-filter {
68
+ width: 32px;
69
+ }
70
+
71
+ .header-table .right {
72
+ text-align: right;
73
+ }
74
+
75
+ .header-table .right .filter-icon {
76
+ margin-left: 10px;
77
+ }
78
+
79
+ .header-table .ant-input-affix-wrapper {
80
+ padding: 7px 11px;
81
+ }
82
+
83
+ .header-table .ant-btn {
84
+ height: 100%;
85
+ min-height: 32px;
86
+ max-height: 32px;
87
+ }
88
+
89
+ .header-table .btn-action .ant-btn {
90
+ margin-left: 8px;
91
+ }
92
+
93
+ .header-table .btn-config .ant-btn {
94
+ margin-left: 8px;
95
+ }
96
+
97
+ .ant-table .ant-table-tbody img.render-image {
98
+ height: 40px;
99
+ width: 40px;
100
+ object-fit: contain;
101
+ }
102
+
103
+ .ant-table .ant-table-tbody object.render-image {
104
+ height: 40px;
105
+ width: 40px;
106
+ object-fit: contain;
107
+ }
108
+
109
+ .ant-card.ant-card-bordered.table-card {
110
+ border: none;
111
+ }
112
+
113
+ .table-card .ant-table {
114
+ border-radius: 0px;
115
+ }
116
+
117
+ .table-card .ant-table table {
118
+ border-radius: 0px;
119
+ }
120
+
121
+ .table-card .ant-table-container table>thead>tr:first-child th:last-child {
122
+ border-radius: 0px;
123
+ }
124
+
125
+ .table-card .ant-card-body {
126
+ padding: 0;
127
+ }
128
+
129
+ .table-card .ant-card-body .table-row-selected {
130
+ padding: 16px;
131
+ border-bottom: 1px solid var(--border-color-split);
132
+ }
133
+
134
+ .table-card .ant-card-body .relate-table .ant-table-thead>tr>th {
135
+ padding: 8px 16px;
136
+ font-weight: 500;
137
+ font-size: 13px;
138
+ }
139
+
140
+ .table-card .ant-card-body .relate-table .ant-table-thead>tr>th.ant-table-column-sort {
141
+ padding: 0px 16px;
142
+ }
143
+
144
+ /* .table-card .ant-card-body .common-table .ant-table-content {
145
+ overflow: auto !important;
146
+ } */
147
+
148
+ .table-card .ant-card-body .common-table .ant-table-content .ant-table-thead>tr>th {
149
+ padding: 8px 16px;
150
+ font-weight: 500;
151
+ font-size: 13px;
152
+ }
153
+
154
+ .table-card .ant-card-body .common-table .ant-table-content .ant-table-thead>tr>th.ant-table-column-sort {
155
+ padding: 0px 16px;
156
+ }
157
+
158
+ .table-card .ant-card-body .common-table .ant-pagination.ant-table-pagination.ant-table-pagination-right {
159
+ padding-right: 16px;
160
+ }
161
+
162
+ .table-card .ant-card-body .common-table .editable-cell {
163
+ position: relative;
164
+ }
165
+
166
+ .table-card .ant-card-body .common-table .editable-cell-value-wrap {
167
+ padding: 5px 12px;
168
+ cursor: pointer;
169
+ }
170
+
171
+ .table-card .ant-card-body .common-table .editable-cell-value-wrap.editable-cell-read-only {
172
+ cursor: not-allowed;
173
+ background-color: #f5f5f5;
174
+ color: var(--text-color-disabled);
175
+ }
176
+
177
+ .table-card .ant-card-body .common-table .editable-row .editable-cell-value-wrap {
178
+ border: 1px solid #d9d9d9;
179
+ border-radius: 4px;
180
+ padding: 4px 11px;
181
+ min-height: 32px;
182
+ }
183
+
184
+ .table-card .ant-card-body .common-table .editable-row .editable-cell-value-wrap.input_reason {
185
+ border: none;
186
+ padding: 0px 5px;
187
+ }
188
+
189
+ .table-card .ant-card-body .common-table .editable-row .editable-cell-value-wrap.input_reason .select-input-reason {
190
+ border: 1px solid #d9d9d9;
191
+ border-radius: 4px;
192
+ min-height: 32px;
193
+ padding: 4px 0px;
194
+ }
195
+
196
+ .table-card .ant-card-body .common-table .editable-row .editable-cell-value-wrap.input_reason .select-input-reason span {
197
+ padding: 0px 6px;
198
+ }
199
+
200
+ .table-card .ant-card-body .common-table .editable-row .editable-cell-value-wrap.input_reason .icon-comment svg {
201
+ width: 18px;
202
+ height: 18px;
203
+ margin-left: 4px;
204
+ }
205
+
206
+ .table-card .ant-card-body .common-table .editable-row .editable-cell-value-wrap.input_reason .icon-comment.not-editable {
207
+ position: relative;
208
+ }
209
+
210
+ .table-card .ant-card-body .common-table .editable-row .editable-cell-value-wrap.input_reason .icon-comment.not-editable .area-icon-comment {
211
+ position: absolute;
212
+ width: 80%;
213
+ height: 28px;
214
+ z-index: 2;
215
+ top: -4px;
216
+ background: transparent;
217
+ }
218
+
219
+ .table-card .ant-card-body .common-table [data-theme="dark"] .editable-row .editable-cell-value-wrap {
220
+ border: 1px solid #434343;
221
+ }
222
+
223
+ .table-card .ant-card-body .common-table img.render-image {
224
+ height: 40px;
225
+ width: 40px;
226
+ object-fit: contain;
227
+ }
228
+
229
+ .table-card .ant-card-body .common-table.select-list .ant-table-thead th,
230
+ .table-card .ant-card-body .common-table.select-list .ant-table-tbody td {
231
+ vertical-align: middle;
232
+ }
233
+
234
+ .table-card .ant-card-body .common-table.data-table .ant-table-thead .ant-table-cell {
235
+ text-align: center;
236
+ }
237
+
238
+ .table-card .ant-card-body .editable {
239
+ margin-bottom: 24px;
240
+ }
241
+
242
+ .table-card .ant-card-body .editable .editable-row:hover>td {
243
+ background-color: inherit !important;
244
+ }
245
+
246
+ .table-card .ant-card-body .disabled-sort-list .drag-visible .anticon.anticon-menu {
247
+ cursor: not-allowed !important;
248
+ }
249
+
250
+ .table-card .ant-card-body .pagination-custom {
251
+ width: 100%;
252
+ margin: 16px 0px;
253
+ padding: 0px 16px;
254
+ }
255
+
256
+ .ant-dropdown-menu.table-action-menu {
257
+ min-width: 150px;
258
+ }
259
+
260
+ .ant-dropdown-menu.table-action-menu .ant-dropdown-menu-item .ant-typography {
261
+ width: 100%;
262
+ }
263
+
264
+ .modal-display-reason {
265
+ border: 1px solid #d9d9d9;
266
+ border-radius: 4px;
267
+ padding: 4px 11px;
268
+ min-height: 32px;
269
+ }
270
+
271
+ /*----- Custom Ant Card ------*/
272
+ .ant-card.ant-card-bordered {
273
+ border-radius: 5px;
274
+ }
275
+
276
+ /*----- Custom Page Header ------*/
277
+ .page-header-title {
278
+ padding: 8px 0px;
279
+ }
280
+
281
+ .page-header-title h1 {
282
+ font-weight: 400;
283
+ font-size: 26px;
284
+ }
285
+
286
+ .page-header-title button {
287
+ margin-left: 8px;
288
+ }
289
+
290
+ .ant-page-header {
291
+ padding: 16px 30px;
292
+ }
293
+
294
+ .ant-page-header .ant-page-header-heading {
295
+ display: none;
296
+ }
297
+
298
+ .ant-page-header.hide-title .ant-page-header-heading-title {
299
+ display: none;
300
+ }
301
+
302
+ /*----- Custom Font ------*/
303
+ h3.ant-typography,
304
+ h4.ant-typography {
305
+ font-weight: 400;
306
+ }
307
+
308
+ /*----- Custom Modal ------*/
309
+ .ant-modal {
310
+ @media (max-width: 991px) {
311
+ width: 100% !important;
312
+ }
313
+ }
314
+
315
+ .ant-modal {
316
+ @media (min-width: 992px) {
317
+ width: 60% !important;
318
+ }
319
+ }
320
+
321
+ .ant-modal.default {
322
+ width: 520px !important;
323
+ }
324
+
325
+ .ant-modal.full-width {
326
+ width: 100% !important;
327
+ }
328
+
329
+ /*----- Custom Form ------*/
330
+ .ant-form .one2many-required .ant-form-item-explain,
331
+ .ant-modal-body .one2many-required .ant-form-item-explain {
332
+ display: none;
333
+ }
334
+
335
+ .ant-form .one2many-required .text-label::before,
336
+ .ant-form .ant-form-item-has-error .text-label::before,
337
+ .ant-modal-body .one2many-required .text-label::before,
338
+ .ant-modal-body .ant-form-item-has-error .text-label::before {
339
+ display: none !important;
340
+ }
341
+
342
+ .ant-form .one2many-required .text-label::after,
343
+ .ant-form .ant-form-item-has-error .text-label::after,
344
+ .ant-modal-body .one2many-required .text-label::after,
345
+ .ant-modal-body .ant-form-item-has-error .text-label::after {
346
+ display: inline-block !important;
347
+ margin-right: 4px;
348
+ color: #f5222d;
349
+ font-size: 14px;
350
+ font-family: SimSun, sans-serif;
351
+ line-height: 1;
352
+ content: "*";
353
+ }
354
+
355
+ .ant-form .no-margin .ant-form-item,
356
+ .ant-modal-body .no-margin .ant-form-item {
357
+ margin-bottom: 1px !important;
358
+ }
359
+
360
+ .ant-form .text-label-required::before,
361
+ .ant-form .ant-form-item-required::before,
362
+ .ant-modal-body .text-label-required::before,
363
+ .ant-modal-body .ant-form-item-required::before {
364
+ display: none !important;
365
+ }
366
+
367
+ .ant-form .text-label-required::after,
368
+ .ant-form .ant-form-item-required::after,
369
+ .ant-modal-body .text-label-required::after,
370
+ .ant-modal-body .ant-form-item-required::after {
371
+ display: inline-block !important;
372
+ margin-right: 4px;
373
+ color: #f5222d;
374
+ font-size: 14px;
375
+ font-family: SimSun, sans-serif;
376
+ line-height: 1;
377
+ content: "*";
378
+ }
379
+
380
+ .ant-form .text-label-required.space-left::after,
381
+ .ant-form .ant-form-item-required.space-left::after,
382
+ .ant-modal-body .text-label-required.space-left::after,
383
+ .ant-modal-body .ant-form-item-required.space-left::after {
384
+ margin-left: 2px;
385
+ }
386
+
387
+ .ant-form .ant-form-item .ant-input-number,
388
+ .ant-modal-body .ant-form-item .ant-input-number {
389
+ width: 100%;
390
+ }
391
+
392
+ .ant-form .ant-form-item-has-feedback.ant-form-item-has-success .ant-form-item-children-icon,
393
+ .ant-modal-body .ant-form-item-has-feedback.ant-form-item-has-success .ant-form-item-children-icon {
394
+ display: none;
395
+ }
396
+
397
+ .ant-form .ant-form-item-has-feedback.ant-form-item-has-success .ant-input,
398
+ .ant-form .ant-form-item-has-feedback.ant-form-item-has-success .ant-picker,
399
+ .ant-form .ant-form-item-has-feedback.ant-form-item-has-success .ant-input-affix-wrapper .ant-input-suffix,
400
+ .ant-modal-body .ant-form-item-has-feedback.ant-form-item-has-success .ant-input,
401
+ .ant-modal-body .ant-form-item-has-feedback.ant-form-item-has-success .ant-picker,
402
+ .ant-modal-body .ant-form-item-has-feedback.ant-form-item-has-success .ant-input-affix-wrapper .ant-input-suffix {
403
+ padding-right: 11px;
404
+ }
405
+
406
+ .ant-form .ant-form-item-has-feedback.ant-form-item-has-success .ant-select .ant-select-arrow,
407
+ .ant-form .ant-form-item-has-feedback.ant-form-item-has-success .ant-select .ant-select-clear,
408
+ .ant-form .ant-form-item-has-feedback.ant-form-item-has-success :not(.ant-input-group-addon)>.ant-select .ant-select-arrow,
409
+ .ant-form .ant-form-item-has-feedback.ant-form-item-has-success :not(.ant-input-group-addon)>.ant-select .ant-select-clear,
410
+ .ant-modal-body .ant-form-item-has-feedback.ant-form-item-has-success .ant-select .ant-select-arrow,
411
+ .ant-modal-body .ant-form-item-has-feedback.ant-form-item-has-success .ant-select .ant-select-clear,
412
+ .ant-modal-body .ant-form-item-has-feedback.ant-form-item-has-success :not(.ant-input-group-addon)>.ant-select .ant-select-arrow,
413
+ .ant-modal-body .ant-form-item-has-feedback.ant-form-item-has-success :not(.ant-input-group-addon)>.ant-select .ant-select-clear {
414
+ right: 11px;
415
+ }
416
+
417
+ .ant-form .ant-form-item-has-feedback .ant-form-item-children-icon,
418
+ .ant-modal-body .ant-form-item-has-feedback .ant-form-item-children-icon {
419
+ display: initial;
420
+ }
421
+
422
+ .ant-form .ant-form-item-has-feedback .ant-form-item-control:hover .ant-form-item-explain div,
423
+ .ant-modal-body .ant-form-item-has-feedback .ant-form-item-control:hover .ant-form-item-explain div {
424
+ visibility: visible;
425
+ }
426
+
427
+ .ant-form .ant-form-item-has-feedback .ant-form-item-control .ant-form-item-explain,
428
+ .ant-modal-body .ant-form-item-has-feedback .ant-form-item-control .ant-form-item-explain {
429
+ min-height: 0px !important;
430
+ z-index: 2;
431
+ }
432
+
433
+ .ant-form .ant-form-item-has-feedback .ant-form-item-control .ant-form-item-explain div,
434
+ .ant-modal-body .ant-form-item-has-feedback .ant-form-item-control .ant-form-item-explain div {
435
+ background-color: rgba(0, 0, 0, 0.7);
436
+ position: absolute;
437
+ margin-top: 5px;
438
+ right: 0px;
439
+ padding: 3px 5px;
440
+ border-radius: 5px;
441
+ color: white;
442
+ visibility: hidden;
443
+ }
444
+
445
+ .ant-form .ant-form-item-with-help,
446
+ .ant-modal-body .ant-form-item-with-help {
447
+ margin-bottom: 24px;
448
+ }
449
+
450
+ .full-list-editable-form .ant-row.ant-form-item {
451
+ margin-bottom: 0;
452
+ flex-direction: row;
453
+ }
454
+
455
+ .full-list-editable-form .ant-table-row {
456
+ vertical-align: baseline;
457
+ }
458
+
459
+ .ant-form-item-has-feedback.ant-form-item-has-error .input-number-container.ant-input-affix-wrapper .ant-input-number .ant-input-number-handler-wrap {
460
+ right: 30px;
461
+ }
462
+
463
+ .ant-form-item-has-feedback.ant-form-item-has-error .input-number-container.ant-input-affix-wrapper .ant-input-number .ant-input-number-handler-up {
464
+ border-top-right-radius: 0px;
465
+ border-right: 1px solid #d9d9d9;
466
+ }
467
+
468
+ .ant-form-item-has-feedback.ant-form-item-has-error .input-number-container.ant-input-affix-wrapper .ant-input-number .ant-input-number-handler-down {
469
+ border-right: 1px solid #d9d9d9;
470
+ border-bottom-right-radius: 0px;
471
+ }
472
+
473
+ .ant-form-item-has-feedback.ant-form-item-has-error .input-number-container.ant-input-affix-wrapper.suffix .ant-input-number .ant-input-number-handler-wrap {
474
+ right: 0px;
475
+ }
476
+
477
+ .ant-form-item-has-feedback.ant-form-item-has-error .input-number-container.ant-input-affix-wrapper.suffix .ant-input-suffix {
478
+ padding-right: 28px;
479
+ }
480
+
481
+ .ant-form-item-has-feedback.ant-form-item-has-error .ant-input-number-handler-wrap {
482
+ right: 30px;
483
+ }
484
+
485
+ .ant-form-item-has-feedback.ant-form-item-has-error .ant-input-number-handler-up {
486
+ border-top-right-radius: 0px;
487
+ border-right: 1px solid #d9d9d9;
488
+ }
489
+
490
+ .ant-form-item-has-feedback.ant-form-item-has-error .ant-input-number-handler-down {
491
+ border-right: 1px solid #d9d9d9;
492
+ border-bottom-right-radius: 0px;
493
+ }
494
+
495
+ .text-label {
496
+ color: var(--text-color-label);
497
+ }
498
+
499
+ /*----- Custom Ant Tree------*/
500
+ .ant-tree .ant-tree-treenode.drag-over>[draggable] {
501
+ background-color: #d4eaff;
502
+ }
503
+
504
+ .ant-tree .ant-tree-treenode.drag-over-gap-top>[draggable] {
505
+ border-top-color: #d4eaff;
506
+ }
507
+
508
+ .ant-tree .ant-tree-treenode.drag-over-gap-bottom>[draggable] {
509
+ border-bottom-color: #d4eaff;
510
+ }
511
+
512
+ .ant-tree .ant-tree-node-content-wrapper.ant-tree-node-selected {
513
+ background-color: transparent;
514
+ }
515
+
516
+ @media (max-width: 767px) {
517
+ .table-card .ant-card-body .pagination-custom .pagination {
518
+ width: 100%;
519
+ text-align: center;
520
+ margin-right: 0;
521
+ }
522
+
523
+ .table-card .ant-card-body .per-page {
524
+ margin-top: 16px;
525
+ width: 100%;
526
+ text-align: center;
527
+ font-size: 12px;
528
+ }
529
+ }
530
+
531
+ .addable-table-minus-button {
532
+ height: 20px;
533
+ width: 20px;
534
+ border-radius: 10px;
535
+ border: 1px solid #efefef;
536
+ color: red;
537
+ background-color: white;
538
+ align-items: center;
539
+ justify-content: center;
540
+ display: flex;
541
+ cursor: pointer;
542
+ }
543
+
544
+ /*----- custom upload drag container of image field ------*/
545
+ .image-field {
546
+ margin-bottom: 20px;
547
+ }
548
+
549
+ .image-field .ant-upload-drag-container {
550
+ display: table !important;
551
+ width: 100%;
552
+ }
553
+
554
+ .image-field .ant-row {
555
+ flex-flow: column;
556
+ }
557
+
558
+ .file-field {
559
+ margin-bottom: 20px;
560
+ }
561
+
562
+ .file-field .ant-upload.ant-upload-drag .ant-upload {
563
+ padding: 0;
564
+ }
565
+
566
+ .file-field .ant-upload .ant-upload-btn {
567
+ display: flex;
568
+ }
569
+
570
+ .file-field .ant-upload-drag-container {
571
+ display: table-cell !important;
572
+ width: 100%;
573
+ padding-top: 30px;
574
+ }
575
+
576
+ .file-field .ant-upload-drag-container .add-button-icon {
577
+ position: absolute;
578
+ top: 8px;
579
+ right: 13px;
580
+ cursor: pointer;
581
+ }
582
+
583
+ .file-field .ant-upload-drag-container .add-button-icon .ant-upload {
584
+ padding: 0;
585
+ }
586
+
587
+ .file-field .ant-row-column {
588
+ flex-flow: column;
589
+ }
590
+
591
+ .file-field .ant-form-item-control {
592
+ display: block;
593
+ width: 100%;
594
+ }
595
+
596
+ .file-field .ant-form-item-control-input {
597
+ min-height: auto;
598
+ }
599
+
600
+ .file-field .type-icon-wrapper {
601
+ min-height: 150px;
602
+ text-align: center;
603
+ }
604
+
605
+ .file-field .type-icon-wrapper .image-type-icon {
606
+ width: 100%;
607
+ height: auto;
608
+ }
609
+
610
+ .file-field .type-icon-wrapper .file-type-icon {
611
+ min-height: 0;
612
+ height: 100px;
613
+ width: auto;
614
+ }
615
+
616
+ .ant-tooltip-arrow::before {
617
+ background-color: rgba(0, 0, 0, 0.85) !important;
618
+ }
619
+
620
+ .ant-tooltip .ant-tooltip-inner {
621
+ background-color: rgba(0, 0, 0, 0.85);
622
+ }
623
+
624
+ .ant-form-item-feedback-icon-success {
625
+ display: none;
626
+ }
627
+
628
+ .ant-tooltip-inner {
629
+ display: flex;
630
+ justify-content: center;
631
+ align-items: center;
632
+ font-size: 10px;
633
+ padding: 2px 4px;
634
+ min-height: unset;
635
+ }
636
+
637
+ .mutiple-upload-files-container .ant-row-middle {
638
+ text-align: left;
639
+ }
640
+
641
+ .mutiple-upload-files-container .ant-upload.ant-upload-drag {
642
+ border: 0;
643
+ }
644
+
645
+ .mutiple-upload-files-container .multiple-image-container {
646
+ border: 0;
647
+ }
648
+
649
+ .mutiple-upload-files-container .multiple-image-container .scrollable {
650
+ min-height: 212px;
651
+ }
652
+
653
+ .mutiple-upload-files-container .multiple-image-container .ant-upload {
654
+ padding: 0;
655
+ }
656
+
657
+ .mutiple-upload-files-container .multiple-image-container .ant-upload .anticon-plus {
658
+ font-size: 20px;
659
+ color: #00000090;
660
+ }
661
+
662
+ .mutiple-upload-files-container .multiple-image-container .notice-arrow {
663
+ position: absolute;
664
+ right: 0;
665
+ top: 38%;
666
+ display: flex;
667
+ width: 50px;
668
+ height: 50px;
669
+ background: #00000050;
670
+ justify-content: center;
671
+ align-items: center;
672
+ color: white;
673
+ font-size: 25px;
674
+ }
675
+
676
+ .mutiple-upload-files-container .multiple-image-container .list-image {
677
+ display: flex;
678
+ }
679
+
680
+ .mutiple-upload-files-container .multiple-image-container .list-image .meta-data-overlay {
681
+ position: absolute;
682
+ bottom: 2px;
683
+ left: 0;
684
+ right: 0;
685
+ background-color: white;
686
+ z-index: 4;
687
+ padding: 5px 10px;
688
+ }
689
+
690
+ .mutiple-upload-files-container .multiple-image-container .list-image .image {
691
+ position: relative;
692
+ width: 150px;
693
+ }
694
+
695
+ .mutiple-upload-files-container .multiple-image-container .list-image .image:hover::before {
696
+ position: absolute;
697
+ width: 100%;
698
+ height: 100%;
699
+ left: 0;
700
+ opacity: 0.9;
701
+ transition: all 0.3s;
702
+ content: " ";
703
+ z-index: 5;
704
+ }
705
+
706
+ .mutiple-upload-files-container .multiple-image-container .list-image .image:hover img {
707
+ opacity: 0.8;
708
+ }
709
+
710
+ .mutiple-upload-files-container .multiple-image-container .list-image .image:hover .multiple-upload-actions {
711
+ width: 100%;
712
+ }
713
+
714
+ .mutiple-upload-files-container .multiple-image-container .ant-upload .ant-upload-btn {
715
+ display: flex;
716
+ }
717
+
718
+ .mutiple-upload-files-container .multiple-image-container .ant-upload-drag-container {
719
+ display: table-cell !important;
720
+ width: 100%;
721
+ height: 100%;
722
+ left: 0;
723
+ opacity: 0.9;
724
+ transition: all 0.3s;
725
+ content: " ";
726
+ padding-top: 30px;
727
+ }
728
+
729
+ .mutiple-upload-files-container .multiple-image-container .add-button-icon {
730
+ position: absolute;
731
+ top: 8px;
732
+ right: 13px;
733
+ cursor: pointer;
734
+ }
735
+
736
+ .mutiple-upload-files-container .multiple-image-container .add-button-icon .ant-upload {
737
+ padding: 0;
738
+ }
739
+
740
+ .mutiple-upload-files-container .ant-row-column {
741
+ flex-flow: column;
742
+ }
743
+
744
+ .mutiple-upload-files-container .ant-form-item-control {
745
+ display: block;
746
+ width: 100%;
747
+ }
748
+
749
+ .mutiple-upload-files-container .ant-form-item-control-input {
750
+ min-height: auto;
751
+ }
752
+
753
+ .mutiple-upload-files-container .type-icon-wrapper {
754
+ min-height: 150px;
755
+ text-align: center;
756
+ }
757
+
758
+ .mutiple-upload-files-container .type-icon-wrapper .image-type-icon {
759
+ width: 100%;
760
+ height: auto;
761
+ }
762
+
763
+ .mutiple-upload-files-container .type-icon-wrapper .file-type-icon {
764
+ min-height: 0;
765
+ height: 100px;
766
+ width: auto;
767
+ }
768
+
769
+ .truncate-middle {
770
+ position: relative;
771
+ max-width: 96px;
772
+ }
773
+
774
+ .truncate-middle:after {
775
+ content: attr(data-truncate);
776
+ position: absolute;
777
+ left: 100%;
778
+ top: 0;
779
+ white-space: nowrap;
780
+ background-color: white;
781
+ }
782
+
783
+ .truncate-middle div {
784
+ white-space: nowrap;
785
+ text-overflow: ellipsis;
786
+ overflow: hidden;
787
+ }
788
+
789
+ .single-upload-images-container.imageUrl .single-upload-actions {
790
+ margin: 0 !important;
791
+ display: none;
792
+ flex-direction: row;
793
+ justify-content: center;
794
+ position: absolute;
795
+ top: 50%;
796
+ left: 50%;
797
+ z-index: 2;
798
+ -webkit-transform: translate(-50%, -50%);
799
+ transform: translate(-50%, -50%);
800
+ transition: all 0.3s;
801
+ }
802
+
803
+ .single-upload-images-container.imageUrl .single-upload-actions svg {
804
+ cursor: pointer;
805
+ color: white;
806
+ }
807
+
808
+ .single-upload-images-container.imageUrl .no-preview-single .ant-avatar-string {
809
+ line-height: 46px !important;
810
+ padding-top: 38px;
811
+ font-size: 40px;
812
+ }
813
+
814
+ .single-upload-images-container.imageUrl .ant-upload-drag-container .image-content::before {
815
+ position: absolute;
816
+ z-index: 1;
817
+ width: 100%;
818
+ height: 100%;
819
+ left: 0;
820
+ opacity: 0.9;
821
+ transition: all 0.3s;
822
+ content: " ";
823
+ }
824
+
825
+ .single-upload-images-container.imageUrl .ant-upload-drag-container .image-content {
826
+ position: relative;
827
+ height: 140px;
828
+ line-height: 140px;
829
+ background-color: transparent;
830
+ text-align: center;
831
+ }
832
+
833
+ .single-upload-images-container.imageUrl .ant-upload-drag-container .image-content img {
834
+ max-height: 100%;
835
+ max-width: 100%;
836
+ vertical-align: middle;
837
+ }
838
+
839
+ .single-upload-images-container.imageUrl:hover .single-upload-actions {
840
+ display: flex;
841
+ }
842
+
843
+ .single-upload-images-container.imageUrl:hover .ant-upload-drag-container .image-content::before {
844
+ position: absolute;
845
+ z-index: 1;
846
+ width: 100%;
847
+ height: 100%;
848
+ left: 0;
849
+ background-color: rgba(0, 0, 0, 0.5);
850
+ opacity: 0.9;
851
+ transition: all 0.3s;
852
+ content: " ";
853
+ }
854
+
855
+ .single-upload-images-container.imageUrl:hover .ant-upload-drag-container img {
856
+ opacity: 0.8;
857
+ }
858
+
859
+ .single-upload-images-container.imageUrl .ant-upload.ant-upload-drag:not(.ant-upload-disabled):hover {
860
+ border-color: #d9d9d9;
861
+ }
862
+
863
+ .single-upload-images-container.imageUrl .ant-upload.ant-upload-drag:hover {
864
+ cursor: default;
865
+ }
866
+
867
+ .single-upload-files-container.imageUrl .single-upload-actions {
868
+ margin: 0 !important;
869
+ display: none;
870
+ flex-direction: row;
871
+ justify-content: center;
872
+ position: absolute;
873
+ top: 50%;
874
+ left: 50%;
875
+ z-index: 2;
876
+ -webkit-transform: translate(-50%, -50%);
877
+ transform: translate(-50%, -50%);
878
+ transition: all 0.3s;
879
+ }
880
+
881
+ .single-upload-files-container.imageUrl .single-upload-actions svg {
882
+ cursor: pointer;
883
+ color: white;
884
+ }
885
+
886
+ .single-upload-files-container.imageUrl .ant-upload-drag-container {
887
+ position: relative;
888
+ }
889
+
890
+ .single-upload-files-container.imageUrl .ant-upload.ant-upload-drag:not(.ant-upload-disabled):hover {
891
+ border-color: #d9d9d9;
892
+ }
893
+
894
+ .single-upload-files-container.imageUrl .ant-upload.ant-upload-drag:hover {
895
+ cursor: default;
896
+ }
897
+
898
+ .react-flow__controls {
899
+ height: 128px;
900
+ width: 32px;
901
+ }
902
+
903
+ .react-flow__controls .react-flow__controls-button {
904
+ height: 32px;
905
+ width: 32px;
906
+ }
907
+
908
+ .blink-effect {
909
+ animation-name: blink;
910
+ animation-duration: 0.2s;
911
+ animation-iteration-count: infinite;
912
+ }
913
+
914
+ .workflows-buttons {
915
+ border-right: 1px solid #8f8f8f;
916
+ padding: 0px 8px 0px 0px;
917
+ }
918
+
919
+ .red-compare {
920
+ background: #fdd;
921
+ }
922
+
923
+ .red-compare td {
924
+ background: #fdd !important;
925
+ }
926
+
927
+ .red-compare-text {
928
+ color: red;
929
+ }
930
+
931
+ .red-compare-text td {
932
+ color: red !important;
933
+ }
934
+
935
+ .green-compare {
936
+ background: #dfd;
937
+ }
938
+
939
+ .green-compare td {
940
+ background: #dfd !important;
941
+ }
942
+
943
+ .compare-detail-card-modal-container {
944
+ margin-top: 20px;
945
+ min-height: 200px;
946
+ }
947
+
948
+ .ant-modal.photoshop-picker .ant-modal-content {
949
+ background-color: unset;
950
+ border-radius: 0px;
951
+ box-shadow: unset;
952
+ }
953
+
954
+ .ant-modal.photoshop-picker .ant-modal-content .ant-modal-body {
955
+ padding: 0px;
956
+ }
957
+
958
+ .photoshop-picker-content .ant-col {
959
+ cursor: pointer;
960
+ margin-right: 5px;
961
+ width: 20px;
962
+ height: 20px;
963
+ }
964
+
965
+ /* Ant Tag */
966
+ .ant-tag.ant-tag-red {
967
+ color: #f5222d;
968
+ background: #fff1f0;
969
+ border-color: #ffa39e;
970
+ }
971
+
972
+ .ant-collapse-item.lost-entities {
973
+ background-color: #ffccc7;
974
+ }
975
+
976
+ .btn-icon-action-table.edit-entity {
977
+ height: 32px;
978
+ line-height: 0;
979
+ }
980
+
981
+ .row-dragging {
982
+ background: #fafafa;
983
+ border: 1px solid #ccc;
984
+ }
985
+
986
+ .row-dragging td {
987
+ padding: 16px;
988
+ visibility: hidden;
989
+ }
990
+
991
+ .row-dragging .drag-visible {
992
+ visibility: visible;
993
+ }
994
+
995
+ .custom-node-workflow {
996
+ color: #222;
997
+ padding: 10px;
998
+ font-size: 20px;
999
+ border-radius: 3px;
1000
+ }
1001
+
1002
+ .custom-node-workflow .container {
1003
+ min-width: 130px;
1004
+ text-align: center;
1005
+ }
1006
+
1007
+ .custom-node-workflow .point-a {
1008
+ top: 0;
1009
+ left: 20%;
1010
+ border-radius: 0;
1011
+ }
1012
+
1013
+ .custom-node-workflow .point-b {
1014
+ top: 0;
1015
+ border-radius: 0;
1016
+ }
1017
+
1018
+ .custom-node-workflow .point-c {
1019
+ top: 0;
1020
+ left: 80%;
1021
+ border-radius: 0;
1022
+ }
1023
+
1024
+ .custom-node-workflow .point-d {
1025
+ bottom: 0;
1026
+ left: 20%;
1027
+ border-radius: 0;
1028
+ }
1029
+
1030
+ .custom-node-workflow .point-e {
1031
+ bottom: 0;
1032
+ border-radius: 0;
1033
+ }
1034
+
1035
+ .custom-node-workflow .point-f {
1036
+ bottom: 0;
1037
+ left: 80%;
1038
+ border-radius: 0;
1039
+ }
1040
+
1041
+ .custom-standard-node-workflow {
1042
+ color: #222;
1043
+ font-size: 20px;
1044
+ border-radius: 3px;
1045
+ min-width: 250px;
1046
+ }
1047
+
1048
+ .custom-standard-node-workflow .container {
1049
+ display: flex;
1050
+ flex-direction: row;
1051
+ }
1052
+
1053
+ .custom-standard-node-workflow .icon-wrapper {
1054
+ width: 90px;
1055
+ display: flex;
1056
+ justify-content: center;
1057
+ align-items: center;
1058
+ }
1059
+
1060
+ .custom-standard-node-workflow .icon-wrapper.icon-sign {
1061
+ margin-right: 2px;
1062
+ }
1063
+
1064
+ .custom-standard-node-workflow .message-wrapper {
1065
+ background-color: white;
1066
+ padding: 10px;
1067
+ width: 100%;
1068
+ border-top-right-radius: 6px;
1069
+ border-bottom-right-radius: 6px;
1070
+ }
1071
+
1072
+ .custom-standard-node-workflow .message-wrapper .text-container {
1073
+ padding: 3px;
1074
+ }
1075
+
1076
+ .custom-standard-node-workflow .message-wrapper .text-label {
1077
+ min-width: 130px;
1078
+ font-size: 15px;
1079
+ font-weight: 500;
1080
+ }
1081
+
1082
+ .custom-standard-node-workflow .message-wrapper .text-description {
1083
+ min-width: 130px;
1084
+ }
1085
+
1086
+ .custom-standard-node-workflow .dot {
1087
+ height: 10px;
1088
+ width: 10px;
1089
+ background-color: rgb(0, 0, 0);
1090
+ border-radius: 50%;
1091
+ display: inline-block;
1092
+ }
1093
+
1094
+ .custom-standard-node-workflow .square {
1095
+ height: 10px;
1096
+ width: 10px;
1097
+ background-color: rgb(0, 0, 0);
1098
+ border-radius: 0;
1099
+ display: inline-block;
1100
+ }
1101
+
1102
+ .custom-standard-node-workflow .arrow-up {
1103
+ width: 0;
1104
+ height: 0;
1105
+ border-left: 6px solid transparent;
1106
+ border-right: 6px solid transparent;
1107
+ border-bottom: 9px solid black;
1108
+ border-radius: 0;
1109
+ background: transparent;
1110
+ border-top-color: transparent;
1111
+ }
1112
+
1113
+ .custom-standard-node-workflow .arrow-down {
1114
+ width: 0;
1115
+ height: 0;
1116
+ border-left: 6px solid transparent;
1117
+ border-right: 6px solid transparent;
1118
+ border-top: 9px solid black;
1119
+ border-radius: 0;
1120
+ background: transparent;
1121
+ border-bottom-color: transparent;
1122
+ }
1123
+
1124
+ .custom-standard-node-workflow .arrow-right {
1125
+ width: 0;
1126
+ height: 0;
1127
+ border-top: 6px solid transparent;
1128
+ border-bottom: 6px solid transparent;
1129
+ border-left: 9px solid black;
1130
+ border-radius: 0;
1131
+ background: transparent;
1132
+ border-right-color: transparent;
1133
+ }
1134
+
1135
+ .custom-standard-node-workflow .arrow-left {
1136
+ width: 0;
1137
+ height: 0;
1138
+ border-top: 6px solid transparent;
1139
+ border-bottom: 6px solid transparent;
1140
+ border-right: 9px solid black;
1141
+ border-radius: 0;
1142
+ background: transparent;
1143
+ border-left-color: transparent;
1144
+ }
1145
+
1146
+ .workflow-translate-table-column .ant-form-item {
1147
+ margin-bottom: 0px;
1148
+ }
1149
+
1150
+ /* AutoComplete Field */
1151
+ .autocomplete.ant-form-item-has-feedback.ant-form-item-has-error.field .ant-form-item-children-icon,
1152
+ .autocomplete.ant-form-item-has-feedback.ant-form-item-has-error.func .ant-form-item-children-icon {
1153
+ right: 45px;
1154
+ }
1155
+
1156
+ .autocomplete.ant-form-item-has-feedback.ant-form-item-has-error.field-func .ant-form-item-children-icon {
1157
+ right: 90px;
1158
+ }
1159
+
1160
+ .dropdown-menu-overflow {
1161
+ position: relative;
1162
+ max-height: 60vh;
1163
+ overflow: auto;
1164
+ }
1165
+
1166
+ .form-item-show-label-only .ant-col.ant-form-item-control {
1167
+ width: 100%;
1168
+ }
1169
+
1170
+ .col-register-form-image .ant-form-item-control {
1171
+ align-self: center;
1172
+ bottom: 30px;
1173
+ }
1174
+
1175
+ .ant-menu .ant-menu-item a {
1176
+ font-size: var(--label-bigger);
1177
+ font-weight: lighter;
1178
+ display: flex;
1179
+ }
1180
+
1181
+ .ant-menu .ant-menu-submenu-title .menu-label {
1182
+ font-size: var(--label-bigger);
1183
+ font-weight: lighter;
1184
+ }
1185
+
1186
+ .ant-menu.ant-menu-inline,
1187
+ .ant-menu.ant-menu-vertical,
1188
+ .ant-menu.ant-menu-vertical-left {
1189
+ border-right: none;
1190
+ }
1191
+
1192
+ .mb-25 {
1193
+ margin-bottom: 25px;
1194
+ }
1195
+
1196
+ .mb-15 {
1197
+ margin-bottom: 15px;
1198
+ }
1199
+
1200
+ .app-loading {
1201
+ height: 100vh;
1202
+ text-align: center;
1203
+ display: flex;
1204
+ flex-direction: column;
1205
+ justify-content: center;
1206
+ align-items: center;
1207
+ }
1208
+
1209
+ .addable-table-container .ant-row {
1210
+ flex-flow: row;
1211
+ }
1212
+
1213
+ .chart-wrapper {
1214
+ width: 100%;
1215
+ min-height: 300px;
1216
+ }
1217
+
1218
+ .custom-select-tag-render-tag {
1219
+ background: rgb(245, 245, 245) !important;
1220
+ border: 1px solid rgb(240, 240, 240) !important;
1221
+ border-radius: 6px;
1222
+ height: 24px;
1223
+ margin-top: 2px;
1224
+ margin-bottom: 2px;
1225
+ line-height: 22px;
1226
+ margin-right: 3px;
1227
+ font-size: 14px;
1228
+ font-variant: tabular-nums;
1229
+ }
1230
+
1231
+ .workflow-transition-container {
1232
+ position: absolute;
1233
+ border: 1px solid #d9d9d9;
1234
+ border-radius: 6px;
1235
+ margin: 15px;
1236
+ padding: 10px 10px;
1237
+ right: 0;
1238
+ background: white;
1239
+ height: 70%;
1240
+ width: 200px;
1241
+ z-index: 10;
1242
+ }
1243
+
1244
+ .workflow-transition-container .elements-container {
1245
+ display: flex;
1246
+ flex-direction: column;
1247
+ justify-content: space-between;
1248
+ height: 100%;
1249
+ }
1250
+
1251
+ .workflow-transition-container .list-container {
1252
+ display: flex;
1253
+ flex-direction: column;
1254
+ height: 100%;
1255
+ margin-bottom: 10px;
1256
+ row-gap: 10px;
1257
+ overflow-y: auto;
1258
+ }
1259
+
1260
+ .workflow-transition-container .list-item {
1261
+ border: 1px solid #d9d9d9;
1262
+ padding: 10px;
1263
+ border-radius: 6px;
1264
+ cursor: pointer;
1265
+ }
1266
+
1267
+ .workflow-transition-container .label {
1268
+ font-size: 12px;
1269
+ white-space: nowrap;
1270
+ overflow: hidden;
1271
+ text-overflow: ellipsis;
1272
+ }
1273
+
1274
+ .modal-validate .ant-modal-body {
1275
+ padding-top: 10px;
1276
+ }
1277
+
1278
+ .switch-list-required {
1279
+ padding-top: 10px;
1280
+ padding-bottom: 10px;
1281
+ }
1282
+
1283
+ .cke_panel_container {
1284
+ overflow: auto !important;
1285
+ }
1286
+
1287
+ .cke_reset_all {
1288
+ max-height: 40vh !important;
1289
+ overflow: auto !important;
1290
+ }
1291
+
1292
+ .codeMarker {
1293
+ background: #fff677;
1294
+ position: absolute;
1295
+ z-index: 20;
1296
+ }
1297
+
1298
+ .json-compare-modal .ant-modal {
1299
+ width: 60% !important;
1300
+ }
1301
+
1302
+ .box_executions_workflows {
1303
+ display: flex;
1304
+ justify-content: flex-end;
1305
+ padding-right: 5px;
1306
+ }
1307
+
1308
+ .icon_vdo {
1309
+ margin: 0 !important;
1310
+ flex-direction: row;
1311
+ justify-content: center;
1312
+ position: absolute;
1313
+ top: 50%;
1314
+ left: 50%;
1315
+ -webkit-transform: translate(-50%, -50%);
1316
+ transform: translate(-50%, -50%);
1317
+ transition: all 0.3s;
1318
+ color: #b4171f;
1319
+ }
1320
+
1321
+ .custom-table-row td {
1322
+ background-color: inherit !important;
1323
+ }
1324
+
1325
+ .list-file {
1326
+ min-width: 170px;
1327
+ min-height: 200px;
1328
+ display: flex;
1329
+ justify-content: center;
1330
+ }
1331
+
1332
+ .dropbtn {
1333
+ background-color: #ffffff00;
1334
+ font-size: 12px;
1335
+ border: none;
1336
+ }
1337
+
1338
+ .dropdown-content a {
1339
+ padding: 12px 16px;
1340
+ font-size: 12px;
1341
+ text-decoration: none;
1342
+ display: block;
1343
+ }
1344
+
1345
+ .dropdown-content {
1346
+ display: none;
1347
+ }
1348
+
1349
+ .dropdown:hover .dropdown-content {
1350
+ display: flex;
1351
+ position: fixed;
1352
+ padding: 10px;
1353
+ width: 100%;
1354
+ background: rgb(255, 255, 255);
1355
+ left: 0px;
1356
+ z-index: 100;
1357
+ flex-direction: column;
1358
+ }
1359
+
1360
+ @media (max-width: 768px) {
1361
+ .ant-menu-submenu-open .ant-menu-submenu-arrow {
1362
+ color: var(--primary-color) !important;
1363
+ }
1364
+
1365
+ .ant-menu-submenu-open .ant-menu-submenu-title>span {
1366
+ color: var(--primary-color) !important;
1367
+ }
1368
+ }
1369
+
1370
+ .mode-display-text {
1371
+ align-items: center;
1372
+ justify-content: center;
1373
+ }
1374
+
1375
+ .react-flow .react-flow__edge path,
1376
+ .react-flow__connectionline path {
1377
+ stroke-width: 2;
1378
+ }
1379
+
1380
+ .wrapper {
1381
+ flex-grow: 1;
1382
+ height: 500px;
1383
+ }
1384
+
1385
+ .customNode {
1386
+ padding: 4px 8px;
1387
+ border: 1px solid var(--primary-color);
1388
+ border-radius: 4px;
1389
+ background-color: white;
1390
+ height: 60px;
1391
+ width: 200px;
1392
+ justify-content: center;
1393
+ align-items: center;
1394
+ display: flex;
1395
+ position: relative;
1396
+ }
1397
+
1398
+ .customNode-add {
1399
+ display: flex;
1400
+ justify-content: center;
1401
+ width: 200px;
1402
+ }
1403
+
1404
+ .customNode.custom-node-add {
1405
+ border: 1px dashed var(--text-color-disabled);
1406
+ }
1407
+
1408
+ .custom-node-add-radius {
1409
+ padding: 4px 8px;
1410
+ border: 1px dashed var(--text-color-disabled);
1411
+ border-radius: 50%;
1412
+ background-color: white;
1413
+ height: 30px;
1414
+ width: 30px;
1415
+ justify-content: center;
1416
+ align-items: center;
1417
+ display: flex;
1418
+ position: relative;
1419
+ }
1420
+
1421
+ .customNodeIconEdit {
1422
+ position: absolute;
1423
+ top: 0px;
1424
+ right: 25px;
1425
+ cursor: pointer;
1426
+ }
1427
+
1428
+ .customNodeIconEdit:hover {
1429
+ color: var(--primary-color);
1430
+ }
1431
+
1432
+ .customNodeIconAdd {
1433
+ position: absolute;
1434
+ top: 0px;
1435
+ right: 5px;
1436
+ }
1437
+
1438
+ .customNodeIconAdd:hover {
1439
+ color: var(--primary-color);
1440
+ }
1441
+
1442
+ .customNode:hover {
1443
+ background-color: var(--hover-color);
1444
+ }
1445
+
1446
+ .customHandle.react-flow__handle {
1447
+ opacity: 0;
1448
+ }
1449
+
1450
+ .customNodeIconExpandOrCollapse {
1451
+ position: absolute;
1452
+ top: 0px;
1453
+ left: 5px;
1454
+ }
1455
+
1456
+ .custom-selectList .draggable-row {
1457
+ border: none !important;
1458
+ }
1459
+
1460
+ .custom-selectList .draggable-row .move {
1461
+ background-color: #fff !important;
1462
+ }
1463
+
1464
+ .addable-table-minus-button-disabled {
1465
+ cursor: not-allowed;
1466
+ background-color: #f5f5f5;
1467
+ color: var(--text-color-disabled);
1468
+ }
1469
+
1470
+ .addon-after-input-function .ant-input-group-addon {
1471
+ padding: 0px;
1472
+ }
1473
+
1474
+ .custom-table-headers th {
1475
+ background-color: inherit !important;
1476
+ }
1477
+
1478
+ .custom-node-content {
1479
+ width: 100%;
1480
+ display: flex;
1481
+ }
1482
+
1483
+ .custom-node-content-text span {
1484
+ display: flex;
1485
+ justify-content: center;
1486
+ }
1487
+
1488
+ .custom-node-content-tag {
1489
+ display: flex;
1490
+ justify-content: end;
1491
+ }
1492
+
1493
+ .sticky-header {
1494
+ position: sticky;
1495
+ top: 0;
1496
+ background-color: #fff;
1497
+ z-index: 100;
1498
+ }
1499
+
1500
+ .customNode-flow {
1501
+ padding: 4px 8px;
1502
+ border: 1px solid var(--primary-color);
1503
+ border-radius: 4px;
1504
+ background-color: white;
1505
+ height: 70px;
1506
+ width: 200px;
1507
+ justify-content: center;
1508
+ align-items: center;
1509
+ display: flex;
1510
+ flex-direction: column;
1511
+ }
1512
+
1513
+ .customNode-start-flow {
1514
+ display: flex;
1515
+ justify-content: center;
1516
+ width: 200px;
1517
+ }
1518
+
1519
+ .customNode.customNode-start-flow {
1520
+ border: 1px dashed var(--text-color-disabled);
1521
+ }
1522
+
1523
+ .customNode-start-flow-radius {
1524
+ padding: 4px 8px;
1525
+ border: 1px dashed var(--text-color-disabled);
1526
+ border-radius: 50%;
1527
+ background-color: white;
1528
+ height: 50px;
1529
+ width: 50px;
1530
+ justify-content: center;
1531
+ align-items: center;
1532
+ display: flex;
1533
+ position: relative;
1534
+ }
1535
+
1536
+ .customNode-add-flow {
1537
+ display: flex;
1538
+ justify-content: center;
1539
+ width: 200px;
1540
+ }
1541
+
1542
+ .custom-node-distribution-img {
1543
+ background-image: url("/static/images/split.svg");
1544
+ background-size: 18px 18px;
1545
+ height: 22px;
1546
+ width: 22px;
1547
+ position: absolute;
1548
+ top: 4px;
1549
+ left: 5px;
1550
+ background-repeat: no-repeat;
1551
+ }
1552
+
1553
+ .custom-node-add-radius-flow {
1554
+ padding: 4px 8px;
1555
+ border: 1px dashed var(--text-color-disabled);
1556
+ border-radius: 50%;
1557
+ background-color: white;
1558
+ height: 30px;
1559
+ width: 30px;
1560
+ justify-content: center;
1561
+ align-items: center;
1562
+ display: flex;
1563
+ position: relative;
1564
+ }
1565
+
1566
+ .line-between-node {
1567
+ left: 50%;
1568
+ height: 25px;
1569
+ width: 2px;
1570
+ background-color: #999;
1571
+ position: relative;
1572
+ margin-left: -1px;
1573
+ }
1574
+
1575
+ .custom-node-distribution-btn {
1576
+ padding: 4px 8px;
1577
+ border: 1px solid var(--text-color-disabled);
1578
+ border-radius: 50%;
1579
+ color: black;
1580
+ height: 30px;
1581
+ width: 30px;
1582
+ justify-content: center;
1583
+ align-items: center;
1584
+ display: flex;
1585
+ margin-top: -15px;
1586
+ z-index: 100;
1587
+ position: absolute;
1588
+ }
1589
+
1590
+ .chartwidget-download-button {
1591
+ display: none;
1592
+ }
1593
+
1594
+ .chartwidget-canvas:hover .chartwidget-download-button {
1595
+ display: block;
1596
+ }
1597
+
1598
+ .buttonvariable {
1599
+ min-width: min(180px, 100%);
1600
+ max-width: 100%;
1601
+ overflow: hidden;
1602
+ display: flex;
1603
+ text-align: center;
1604
+ justify-content: center;
1605
+ color: var(--text-color-var) !important;
1606
+ background-color: var(--background-color-var) !important;
1607
+ margin-top: var(--align-bottom) !important;
1608
+ }
1609
+
1610
+ .buttonvariable:hover {
1611
+ background-color: var(--background-color-hover-var) !important;
1612
+ color: var(--text-color-hover-var) !important;
1613
+ }
1614
+
1615
+ .table-external .ant-table-cell {
1616
+ padding: 10px 16px;
1617
+ }
1618
+
1619
+ .custom-action-renderer-menu {
1620
+ box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1) !important;
1621
+ -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
1622
+ -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
1623
+ -ms-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
1624
+ }
1625
+
1626
+ .custom-action-renderer-text {
1627
+ font-size: 14px !important;
1628
+ }
1629
+
1630
+ .custom-action-renderer-menu-item {
1631
+ margin: 0px !important;
1632
+ }