cc-core-cli 1.0.139 → 1.0.141

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