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,2645 @@
1
+ /* New Detail CSS - Complete conversion from detail.less */
2
+ @import url("./custom-antd.css");
3
+
4
+ .timeline-title {
5
+ font-weight: bold;
6
+ }
7
+
8
+ .timeline-title .time {
9
+ font-weight: normal;
10
+ color: #c4c4c4;
11
+ }
12
+
13
+ .mix-button-dropdown-container {
14
+ margin: 0 0 0 9px;
15
+ border: 1px solid var(--primary-color);
16
+ padding: 6px 10px;
17
+ border-radius: 5px;
18
+ }
19
+
20
+ .mix-button-text {
21
+ color: var(--primary-color);
22
+ }
23
+
24
+ .related-one2one-select .ant-select-selector {
25
+ border-top-right-radius: 0 !important;
26
+ border-bottom-right-radius: 0 !important;
27
+ }
28
+
29
+ .form-item-related-one2one-select.ant-form-item-has-feedback.ant-form-item-has-error .ant-form-item-children-icon {
30
+ right: 46px;
31
+ }
32
+
33
+ /* Components layout */
34
+ .detail-component-layout {
35
+ padding-left: 8px;
36
+ padding-right: 8px;
37
+ }
38
+
39
+ .detail-component-layout .component-layout-detail .component-layout-detail-dnd {
40
+ margin: 0px;
41
+ margin-bottom: 24px;
42
+ }
43
+
44
+ .detail-component-layout .component-layout-detail .component-layout-detail-dnd .layout-container .position-top,
45
+ .detail-component-layout .component-layout-detail .component-layout-detail-dnd .layout-container .position-bottom {
46
+ min-height: 50px;
47
+ border: 1px solid var(--border-color-base);
48
+ }
49
+
50
+ .detail-component-layout .component-layout-detail .component-layout-detail-dnd .layout-container .position-top {
51
+ border-top-left-radius: var(--border-radius-base);
52
+ border-top-right-radius: var(--border-radius-base);
53
+ }
54
+
55
+ .detail-component-layout .component-layout-detail .component-layout-detail-dnd .layout-container .position-bottom {
56
+ border-bottom-left-radius: var(--border-radius-base);
57
+ border-bottom-right-radius: var(--border-radius-base);
58
+ }
59
+
60
+ .detail-component-layout .component-layout-detail .component-layout-detail-dnd .layout-container .position-middle-top {
61
+ min-height: 50px;
62
+ border-bottom: 1px solid var(--border-color-base);
63
+ }
64
+
65
+ .detail-component-layout .component-layout-detail .component-layout-detail-dnd .layout-container .position-middle-bottom {
66
+ min-height: 50px;
67
+ border-top: 1px solid var(--border-color-base);
68
+ }
69
+
70
+ .detail-component-layout .component-layout-detail .component-layout-detail-dnd .layout-container .position-middle-middle {
71
+ height: 100px;
72
+ background-color: var(--background-color);
73
+ }
74
+
75
+ .detail-component-layout .component-layout-detail .component-layout-detail-dnd .layout-container .position-left,
76
+ .detail-component-layout .component-layout-detail .component-layout-detail-dnd .layout-container .position-right {
77
+ min-height: 150px;
78
+ border: 1px solid var(--border-color-base);
79
+ border-top: none;
80
+ border-bottom: none;
81
+ }
82
+
83
+ .detail-component-layout .component-layout-detail .component-layout-detail-dnd .layout-container .layout-block {
84
+ height: 100%;
85
+ min-height: 50px;
86
+ }
87
+
88
+ .detail-component-layout .component-layout-detail .component-layout-detail-dnd .layout-container .layout-block .layout-block-item {
89
+ position: relative;
90
+ margin: 8px;
91
+ display: flex;
92
+ flex-direction: column;
93
+ }
94
+
95
+ .detail-component-layout .component-layout-detail .component-layout-detail-dnd .layout-container .layout-block .layout-block-item .block-item {
96
+ display: flex;
97
+ border: 1px dashed #f2f2f2;
98
+ }
99
+
100
+ .detail-component-layout .component-layout-detail .component-layout-detail-dnd .layout-container .layout-block .layout-block-item .block-item .item {
101
+ width: 100%;
102
+ padding: 5px 8px;
103
+ }
104
+
105
+ .detail-component-layout .component-layout-detail .component-layout-detail-dnd .layout-container .layout-block .layout-block-item .block-item .icon-edit {
106
+ cursor: pointer;
107
+ padding-right: 24px;
108
+ padding-top: 5px;
109
+ color: var(--border-color-base);
110
+ }
111
+
112
+ .detail-component-layout .component-layout-detail .component-layout-detail-dnd .layout-container .layout-block .layout-block-item .block-item .icon-edit:hover {
113
+ color: var(--text-color);
114
+ }
115
+
116
+ .detail-component-layout .component-layout-detail .component-layout-detail-dnd .layout-container .layout-block .layout-block-item .block-item .icon-remove {
117
+ display: flex;
118
+ cursor: pointer;
119
+ position: absolute;
120
+ right: 6px;
121
+ top: 9px;
122
+ z-index: 2;
123
+ color: var(--border-color-base);
124
+ }
125
+
126
+ .detail-component-layout .component-layout-detail .component-layout-detail-dnd .layout-container .layout-block .layout-block-item .block-item .icon-remove:hover {
127
+ color: var(--text-color);
128
+ }
129
+
130
+ .detail-component-layout .component-layout-detail .component-layout-detail-dnd .widget-container .widget {
131
+ cursor: pointer;
132
+ background-color: var(--background-color);
133
+ margin-bottom: 5px;
134
+ border-radius: 5px;
135
+ padding: 5px 15px;
136
+ white-space: nowrap;
137
+ overflow: hidden;
138
+ text-overflow: ellipsis;
139
+ }
140
+
141
+ /* Component Mapping Data */
142
+ .component-mapping-data {
143
+ padding-top: 10px;
144
+ }
145
+
146
+ .component-mapping-data .mapping-data-dnd .field-container .field-container-body,
147
+ .component-mapping-data .mapping-data-dnd .functions-container .functions-container-body {
148
+ max-height: 40vh;
149
+ overflow-y: auto;
150
+ }
151
+
152
+ .component-mapping-data .mapping-data-dnd .field-container .field,
153
+ .component-mapping-data .mapping-data-dnd .functions-container .functions {
154
+ cursor: pointer;
155
+ background-color: var(--background-color);
156
+ margin-bottom: 5px;
157
+ border-radius: 5px;
158
+ padding: 5px 15px;
159
+ white-space: nowrap;
160
+ overflow: hidden;
161
+ text-overflow: ellipsis;
162
+ }
163
+
164
+ .component-mapping-data .mapping-data-dnd .ant-select.source-field .ant-select-single:not(.ant-select-customize-input),
165
+ .component-mapping-data .mapping-data-dnd .ant-select.source-field .ant-select-selector {
166
+ padding-left: 40px;
167
+ }
168
+
169
+ .component-mapping-data .mapping-data-dnd .ant-tree.mapping-tree .ant-tree-treenode,
170
+ .component-mapping-data .mapping-data-dnd .ant-tree.mapping-tree .ant-tree-node-content-wrapper {
171
+ width: 100%;
172
+ cursor: default;
173
+ }
174
+
175
+ .component-mapping-data .mapping-data-dnd .ant-tree.mapping-tree .ant-tree-node-content-wrapper:hover,
176
+ .component-mapping-data .mapping-data-dnd .ant-tree.mapping-tree .ant-tree-node-content-wrapper.ant-tree-node-selected {
177
+ background-color: unset;
178
+ }
179
+
180
+ .component-mapping-data .mapping-data-dnd .mapping-dnd {
181
+ border-radius: var(--border-radius-base);
182
+ }
183
+
184
+ .component-mapping-data .mapping-data-dnd .mapping-dnd .mapping-item {
185
+ line-height: 30px;
186
+ height: 32px;
187
+ border: 1px dashed var(--border-color-base);
188
+ border-radius: var(--border-radius-base);
189
+ padding: 0 30px 0 11px;
190
+ }
191
+
192
+ .component-mapping-data .mapping-data-dnd .mapping-dnd .mapping-item .mapping-item-text {
193
+ overflow: hidden;
194
+ text-overflow: ellipsis;
195
+ }
196
+
197
+ .component-mapping-data .mapping-data-dnd .mapping-dnd .icon-remove {
198
+ cursor: pointer;
199
+ }
200
+
201
+ .component-mapping-data .mapping-data-dnd .ant-tabs-tab {
202
+ border: 0px solid var(--list-layouts-border) !important;
203
+ border-bottom: unset !important;
204
+ background-color: transparent !important;
205
+ }
206
+
207
+ .component-mapping-data .mapping-data-dnd .ant-tabs-tab.ant-tabs-tab-active {
208
+ background-color: transparent;
209
+ }
210
+
211
+ .component-mapping-data .mapping-data-dnd .ant-tabs-nav {
212
+ border-bottom: 0px solid var(--list-layouts-border);
213
+ }
214
+
215
+ .component-mapping-data .mapping-data-dnd .ant-card-bordered {
216
+ border: 1px solid var(--border-color-split) !important;
217
+ border-radius: 6px;
218
+ }
219
+
220
+ .component-tree .ant-tree .ant-tree-node-content-wrapper.ant-tree-node-selected {
221
+ background-color: unset;
222
+ }
223
+
224
+ .component-tree .ant-tree .ant-tree-list-holder {
225
+ overflow-x: hidden;
226
+ }
227
+
228
+ .ant-tree {
229
+ background: unset !important;
230
+ }
231
+
232
+ .component-tree .ant-tree .ant-tree-node-content-wrapper {
233
+ display: flex;
234
+ cursor: default;
235
+ }
236
+
237
+ .component-tree .ant-tree .ant-tree-node-content-wrapper .ant-tree-title {
238
+ width: 100%;
239
+ }
240
+
241
+ .component-tree .ant-tree .ant-tree-node-content-wrapper .ant-tree-title .title-render .move {
242
+ width: 30px;
243
+ cursor: move;
244
+ text-align: center;
245
+ }
246
+
247
+ .component-tree .ant-tree .ant-tree-node-content-wrapper .ant-tree-title .title {
248
+ cursor: pointer;
249
+ }
250
+
251
+ .component-tree .ant-tree .ant-tree-node-content-wrapper .ant-tree-title .remove {
252
+ cursor: pointer;
253
+ }
254
+
255
+ .component-tree .ant-tree .ant-tree-node-content-wrapper .ant-tree-title .remove:hover {
256
+ color: red;
257
+ }
258
+
259
+ .component-custom-field .ant-tree.mapping-tree .ant-tree-node-content-wrapper:hover,
260
+ .component-custom-field .ant-tree.mapping-tree .ant-tree-node-content-wrapper.ant-tree-node-selected {
261
+ background-color: unset;
262
+ }
263
+
264
+ .detail-action-menu {
265
+ min-width: 180px;
266
+ }
267
+
268
+ .detail-tab-title,
269
+ .detail-collapse-title {
270
+ line-height: unset;
271
+ }
272
+
273
+ .detail-tab-title .ant-badge-dot,
274
+ .detail-collapse-title .ant-badge-dot {
275
+ display: none;
276
+ }
277
+
278
+ .detail-tab-title.show-badge .ant-badge-dot,
279
+ .detail-collapse-title.show-badge .ant-badge-dot {
280
+ display: initial;
281
+ }
282
+
283
+ .redio-compare .ant-radio-button-wrapper-disabled.ant-radio-button-wrapper-checked {
284
+ color: white;
285
+ background-color: red;
286
+ border-color: red;
287
+ }
288
+
289
+ .redio-compare .ant-radio-checked.ant-radio-disabled .ant-radio-inner {
290
+ border-color: red !important;
291
+ }
292
+
293
+ .redio-compare .ant-radio-checked.ant-radio-disabled .ant-radio-inner::after {
294
+ background-color: red;
295
+ }
296
+
297
+ .select-with-advance-fx .standard-select .ant-select-selector {
298
+ border-top-right-radius: 0px !important;
299
+ border-bottom-right-radius: 0px !important;
300
+ }
301
+
302
+ .select-with-advance-fx .button-toggle {
303
+ display: flex;
304
+ justify-content: center;
305
+ align-items: center;
306
+ }
307
+
308
+ .select-with-advance-fx .button-toggle.on-toggle {
309
+ background-color: var(--primary-color) !important;
310
+ color: white !important;
311
+ }
312
+
313
+ .select-with-advance-fx .button-toggle span {
314
+ font-size: 10px;
315
+ }
316
+
317
+ /* Custom Button Styles */
318
+ .ant-btn.ant-btn-secondary:focus,
319
+ .ant-btn.ant-btn-secondary:hover {
320
+ color: white;
321
+ background: var(--primary-color);
322
+ border-color: var(--primary-color);
323
+ }
324
+
325
+ .ant-btn.ant-btn-secondary:active {
326
+ color: var(--text-color);
327
+ background: white;
328
+ border-color: var(--border-color-base);
329
+ }
330
+
331
+ .ant-btn.ant-btn-primary {
332
+ background: white;
333
+ border-color: var(--primary-color);
334
+ color: var(--primary-color);
335
+ box-shadow: unset;
336
+ }
337
+
338
+ .ant-btn.ant-btn-primary:hover,
339
+ .ant-btn.ant-btn-primary:focus,
340
+ .ant-btn.ant-btn-primary:active {
341
+ background: var(--primary-color);
342
+ border-color: var(--primary-color);
343
+ color: white;
344
+ }
345
+
346
+ .ant-btn.ant-btn-primary[disabled] {
347
+ color: rgba(0, 0, 0, 0.25);
348
+ background: #f5f5f5;
349
+ border-color: #d9d9d9;
350
+ box-shadow: none;
351
+ }
352
+
353
+ .ant-btn.ant-btn-primary[disabled]:hover,
354
+ .ant-btn.ant-btn-primary[disabled]:focus,
355
+ .ant-btn.ant-btn-primary[disabled]:active {
356
+ color: rgba(0, 0, 0, 0.25);
357
+ background: #f5f5f5;
358
+ border-color: #d9d9d9;
359
+ box-shadow: none;
360
+ }
361
+
362
+ .ant-btn.ant-btn-secondary[disabled] {
363
+ color: rgba(0, 0, 0, 0.25);
364
+ background: #f5f5f5;
365
+ border-color: #d9d9d9;
366
+ box-shadow: none;
367
+ cursor: not-allowed;
368
+ }
369
+
370
+ .ant-btn.ant-btn-secondary[disabled]:hover,
371
+ .ant-btn.ant-btn-secondary[disabled]:focus,
372
+ .ant-btn.ant-btn-secondary[disabled]:active {
373
+ color: rgba(0, 0, 0, 0.25);
374
+ background: #f5f5f5;
375
+ border-color: #d9d9d9;
376
+ box-shadow: none;
377
+ }
378
+
379
+ .ant-btn.ant-btn-third {
380
+ background: var(--primary-color);
381
+ border-color: var(--primary-color);
382
+ color: white;
383
+ }
384
+
385
+ .ant-btn.ant-btn-third:hover,
386
+ .ant-btn.ant-btn-third:focus {
387
+ color: white;
388
+ background: var(--primary-color);
389
+ border-color: var(--primary-color);
390
+ opacity: 0.8;
391
+ }
392
+
393
+ .ant-btn.ant-btn-third:active {
394
+ background: var(--primary-color);
395
+ border-color: var(--primary-color);
396
+ color: white;
397
+ }
398
+
399
+ .ant-btn.ant-btn-add {
400
+ color: var(--secondary-color);
401
+ border: 1px solid var(--secondary-color);
402
+ background-color: transparent;
403
+ }
404
+
405
+ .ant-btn-icon .anticon svg {
406
+ width: 16px;
407
+ height: 16px;
408
+ }
409
+
410
+ .ant-input-number-affix-wrapper {
411
+ width: 100%;
412
+ height: 32px;
413
+ }
414
+
415
+ .ant-input-number-affix-wrapper:focus-within {
416
+ box-shadow: 0 0 0 1px var(--primary-color) !important;
417
+ }
418
+
419
+ .detail-number-input .tag,
420
+ .detail-string-input .tag {
421
+ display: none;
422
+ position: absolute;
423
+ right: 5px;
424
+ top: 50%;
425
+ transform: translateY(-50%);
426
+ z-index: 10;
427
+ }
428
+
429
+ .detail-number-input .tag {
430
+ right: 20px;
431
+ }
432
+
433
+ .detail-number-input .tag:hover,
434
+ .detail-string-input .tag:hover {
435
+ display: inline-block;
436
+ }
437
+
438
+ .detail-number-input .tag.force-show,
439
+ .detail-string-input .tag.force-show {
440
+ display: inline-block;
441
+ }
442
+
443
+ .ant-btn-icon .anticon.anticon-down svg {
444
+ margin-top: -2px;
445
+ width: 10px;
446
+ height: 10px;
447
+ }
448
+
449
+ .ant-btn-color-dangerous.ant-btn-variant-outlined:disabled {
450
+ color: rgba(0, 0, 0, 0.25);
451
+ }
452
+
453
+ .ant-table-wrapper .ant-table-column-sorter {
454
+ color: #cfcfcf;
455
+ }
456
+
457
+
458
+ .ant-btn.ant-btn-add:hover,
459
+ .ant-btn.ant-btn-add:focus,
460
+ .ant-btn.ant-btn-add:active {
461
+ color: var(--secondary-color);
462
+ border: 1px solid var(--secondary-color);
463
+ background-color: transparent;
464
+ }
465
+
466
+ .ant-btn.ant-btn-add.full-width {
467
+ width: 100%;
468
+ }
469
+
470
+ /* Common blink effect */
471
+ @keyframes blink {
472
+ 0% {
473
+ box-shadow: none;
474
+ }
475
+
476
+ 50% {
477
+ box-shadow: 0px 0px 6px var(--primary-color);
478
+ }
479
+
480
+ 100% {
481
+ box-shadow: none;
482
+ }
483
+ }
484
+
485
+ /* Custom Text */
486
+ .primary-text {
487
+ color: var(--primary-color);
488
+ }
489
+
490
+ .error-text {
491
+ color: var(--error-color);
492
+ }
493
+
494
+ .success-text {
495
+ color: var(--success-color);
496
+ }
497
+
498
+ .ant-typography.action-color {
499
+ color: var(--action-color);
500
+ }
501
+
502
+ /* Custom Table */
503
+ .table-card .ant-table-column-sorters {
504
+ padding: 0px;
505
+ }
506
+
507
+ .table-card .table-action .table-action-button {
508
+ color: var(--action-color);
509
+ }
510
+
511
+ .table-card .table-action .ant-btn {
512
+ margin-left: 0px;
513
+ }
514
+
515
+ .table-card .table-action .ant-btn.ant-btn-text:hover,
516
+ .table-card .table-action .ant-btn.ant-btn-text:focus {
517
+ background-color: none;
518
+ background: none;
519
+ }
520
+
521
+ .table-card .table-action .ant-btn.ant-btn-icon-only {
522
+ width: 20px;
523
+ height: 20px;
524
+ }
525
+
526
+ .table-card .table-action .ant-btn svg {
527
+ width: 18px;
528
+ height: 18px;
529
+ }
530
+
531
+ .table-card .header-table .ant-table-container table>thead>tr:first-child th:first-child,
532
+ .table-card .header-table .ant-table-container table>thead>tr:first-child th:last-child {
533
+ border-top-left-radius: 0px;
534
+ }
535
+
536
+ .table-row-selected .delete-selected {
537
+ color: var(--action-color);
538
+ cursor: pointer;
539
+ }
540
+
541
+ .ant-table>.ant-table-tbody>tr.ant-table-row:hover>td {
542
+ background: var(--hover-color);
543
+ }
544
+
545
+ /* Custom Message */
546
+ .ant-message.collapsed .ant-message-notice-content {
547
+ min-width: calc(100% - 106px);
548
+ margin-left: 70px;
549
+ }
550
+
551
+ .ant-message .ant-message-notice-content {
552
+ padding: 0px;
553
+ min-width: calc(100% - 286px);
554
+ margin-left: 250px;
555
+ }
556
+
557
+ .ant-message .ant-message-notice-content span.anticon {
558
+ display: none;
559
+ }
560
+
561
+ .ant-message .ant-message-notice-content .ant-message-custom-content {
562
+ border-radius: var(--border-radius-base);
563
+ }
564
+
565
+ .ant-message .ant-message-notice-content .ant-message-custom-content.ant-message-success {
566
+ border: 1px solid var(--success-color);
567
+ background-color: var(--success-color);
568
+ }
569
+
570
+ .ant-message .ant-message-notice-content .ant-message-custom-content.ant-message-success .success-icon {
571
+ padding: 6px 0px;
572
+ text-align: center;
573
+ }
574
+
575
+ .ant-message .ant-message-notice-content .ant-message-custom-content.ant-message-success .success-icon span.anticon {
576
+ display: inline;
577
+ margin-right: 0px;
578
+ color: var(--white-color);
579
+ }
580
+
581
+ .ant-message .ant-message-notice-content .ant-message-custom-content.ant-message-success .success-content {
582
+ padding: 6px 12px;
583
+ background-color: var(--alert-success-bg-color);
584
+ border-top-right-radius: var(--border-radius-base);
585
+ border-bottom-right-radius: var(--border-radius-base);
586
+ }
587
+
588
+ .ant-message .ant-message-notice-content .ant-message-custom-content.ant-message-success .success-content .ant-col {
589
+ text-align: start;
590
+ }
591
+
592
+ .ant-message .ant-message-notice-content .ant-message-custom-content.ant-message-warning {
593
+ border: 1px solid var(--warning-color);
594
+ background-color: var(--warning-color);
595
+ }
596
+
597
+ .ant-message .ant-message-notice-content .ant-message-custom-content.ant-message-warning .warning-icon {
598
+ padding: 6px 0px;
599
+ text-align: center;
600
+ }
601
+
602
+ .ant-message .ant-message-notice-content .ant-message-custom-content.ant-message-warning .warning-icon span.anticon {
603
+ display: inline;
604
+ margin-right: 0px;
605
+ color: var(--white-color);
606
+ }
607
+
608
+ .ant-message .ant-message-notice-content .ant-message-custom-content.ant-message-warning .warning-content {
609
+ padding: 6px 12px;
610
+ background-color: var(--alert-warning-bg-color);
611
+ border-top-right-radius: var(--border-radius-base);
612
+ border-bottom-right-radius: var(--border-radius-base);
613
+ }
614
+
615
+ .ant-message .ant-message-notice-content .ant-message-custom-content.ant-message-warning .warning-content .ant-col {
616
+ text-align: start;
617
+ }
618
+
619
+ .ant-message .ant-message-notice-content .ant-message-custom-content.ant-message-error {
620
+ border: 1px solid var(--error-color);
621
+ background-color: var(--error-color);
622
+ }
623
+
624
+ .ant-message .ant-message-notice-content .ant-message-custom-content.ant-message-error .error-icon {
625
+ padding: 6px 0px;
626
+ text-align: center;
627
+ }
628
+
629
+ .ant-message .ant-message-notice-content .ant-message-custom-content.ant-message-error .error-icon span.anticon {
630
+ display: inline;
631
+ margin-right: 0px;
632
+ color: var(--white-color);
633
+ }
634
+
635
+ .ant-message .ant-message-notice-content .ant-message-custom-content.ant-message-error .error-content {
636
+ padding: 6px 12px;
637
+ background-color: var(--alert-error-bg-color);
638
+ border-top-right-radius: var(--border-radius-base);
639
+ border-bottom-right-radius: var(--border-radius-base);
640
+ }
641
+
642
+ .ant-message .ant-message-notice-content .ant-message-custom-content.ant-message-error .error-content .ant-col {
643
+ text-align: start;
644
+ }
645
+
646
+ .ant-message .ant-message-notice-content .close-message {
647
+ position: absolute;
648
+ right: 6px;
649
+ top: 4px;
650
+ z-index: 100;
651
+ }
652
+
653
+ .ant-message .ant-message-notice-content .close-message .close-message-icon {
654
+ width: 20px;
655
+ height: 20px;
656
+ cursor: pointer;
657
+ color: #00000073;
658
+ }
659
+
660
+ .ant-tabs-tab.ant-tabs-tab-active .ant-tabs-tab-btn .ant-badge {
661
+ color: var(--primary-color);
662
+ }
663
+
664
+ /* Custom Ant InputNumber */
665
+ .input-number-container.ant-input-affix-wrapper {
666
+ padding: 0 0 0 0px;
667
+ }
668
+
669
+ .input-number-container.ant-input-affix-wrapper .ant-input-number,
670
+ .input-number-container.ant-input-affix-wrapper .ant-input-number:focus,
671
+ .input-number-container.ant-input-affix-wrapper .ant-input-number-focused {
672
+ border: none;
673
+ box-shadow: none;
674
+ }
675
+
676
+ .input-number-container.ant-input-affix-wrapper.ant-input-number-without-prefix {
677
+ background: #f5f5f5;
678
+ }
679
+
680
+ .input-number-container.ant-input-affix-wrapper .ant-input-number-input {
681
+ padding: 0px;
682
+ }
683
+
684
+ .input-number-container.ant-input-affix-wrapper.suffix .ant-input-number .ant-input-number-handler-up {
685
+ border-top-right-radius: 0px;
686
+ border-right: 1px solid #d9d9d9;
687
+ }
688
+
689
+ .input-number-container.ant-input-affix-wrapper.suffix .ant-input-number .ant-input-number-handler-down {
690
+ border-right: 1px solid #d9d9d9;
691
+ border-bottom-right-radius: 0px;
692
+ }
693
+
694
+ .input-number-container.ant-input-affix-wrapper.suffix .ant-input-suffix {
695
+ padding-right: 11px;
696
+ }
697
+
698
+ .input-number-container.ant-input-affix-wrapper:focus-within {
699
+ box-shadow: 0 0 0 2px rgba(var(--primary-color), 0.2);
700
+ border-color: var(--primary-color);
701
+ }
702
+
703
+ /* Custom upload container of image */
704
+ .mutiple-upload-files-container,
705
+ .mutiple-upload-images-container {
706
+ background: #fafafa;
707
+ padding: 8px;
708
+ border: 1px dashed #d9d9d9;
709
+ border-radius: 5px;
710
+ }
711
+
712
+ .mutiple-upload-files-container .ant-divider-horizontal,
713
+ .mutiple-upload-images-container .ant-divider-horizontal {
714
+ margin: 0px;
715
+ margin-top: 8px;
716
+ }
717
+
718
+ .mutiple-upload-files-container .empty-image,
719
+ .mutiple-upload-images-container .empty-image {
720
+ line-height: 81px;
721
+ margin-bottom: -18px;
722
+ }
723
+
724
+ .mutiple-upload-files-container .scrollable,
725
+ .mutiple-upload-images-container .scrollable {
726
+ width: 100%;
727
+ display: flex;
728
+ overflow-x: auto;
729
+ overflow-y: hidden;
730
+ padding: 5px 0px;
731
+ }
732
+
733
+ .mutiple-upload-files-container .scrollable .list-image,
734
+ .mutiple-upload-images-container .scrollable .list-image {
735
+ position: relative;
736
+ border: 1px solid #d9d9d9;
737
+ border-radius: 5px;
738
+ padding: 8px;
739
+ margin: 4px;
740
+ }
741
+
742
+ .mutiple-upload-files-container .list-image,
743
+ .mutiple-upload-images-container .list-image {
744
+ display: flex;
745
+ }
746
+
747
+ .mutiple-upload-files-container .list-image .image,
748
+ .mutiple-upload-images-container .list-image .image {
749
+ position: relative;
750
+ width: 100%;
751
+ }
752
+
753
+ .mutiple-upload-files-container .list-image .image .no-preview .ant-avatar-string,
754
+ .mutiple-upload-images-container .list-image .image .no-preview .ant-avatar-string {
755
+ line-height: 32px !important;
756
+ }
757
+
758
+ .mutiple-upload-files-container .list-image .image .multiple-upload-actions,
759
+ .mutiple-upload-images-container .list-image .image .multiple-upload-actions {
760
+ margin: 0 !important;
761
+ display: none;
762
+ flex-direction: row;
763
+ justify-content: center;
764
+ position: absolute;
765
+ top: 50%;
766
+ left: 50%;
767
+ z-index: 6;
768
+ transform: translate(-50%, -50%);
769
+ transition: all 0.3s;
770
+ }
771
+
772
+ .mutiple-upload-files-container .list-image .image .multiple-upload-actions svg,
773
+ .mutiple-upload-images-container .list-image .image .multiple-upload-actions svg {
774
+ cursor: pointer;
775
+ color: white;
776
+ }
777
+
778
+ .mutiple-upload-files-container .list-image .image:hover .multiple-upload-actions,
779
+ .mutiple-upload-images-container .list-image .image:hover .multiple-upload-actions {
780
+ display: flex;
781
+ }
782
+
783
+ .mutiple-upload-files-container .list-image .image:hover .ant-avatar::before,
784
+ .mutiple-upload-images-container .list-image .image:hover .ant-avatar::before {
785
+ position: absolute;
786
+ z-index: 1;
787
+ width: 100%;
788
+ height: 100%;
789
+ left: 0;
790
+ background-color: rgba(0, 0, 0, 0.5);
791
+ opacity: 0.9;
792
+ transition: all 0.3s;
793
+ content: " ";
794
+ }
795
+
796
+ .mutiple-upload-files-container .list-image .image:hover::before,
797
+ .mutiple-upload-images-container .list-image .image:hover::before {
798
+ position: absolute;
799
+ width: 100%;
800
+ height: 100%;
801
+ left: 0;
802
+ opacity: 0.9;
803
+ transition: all 0.3s;
804
+ content: " ";
805
+ z-index: 5;
806
+ }
807
+
808
+ .mutiple-upload-files-container .list-image .image:hover img,
809
+ .mutiple-upload-images-container .list-image .image:hover img {
810
+ opacity: 0.8;
811
+ }
812
+
813
+ .mutiple-upload-files-container .list-image .move-image,
814
+ .mutiple-upload-images-container .list-image .move-image {
815
+ margin-left: -8px;
816
+ cursor: move;
817
+ align-self: center;
818
+ }
819
+
820
+ .mutiple-upload-files-container .main-image .list-image .image .ant-avatar,
821
+ .mutiple-upload-images-container .main-image .list-image .image .ant-avatar {
822
+ width: 150px !important;
823
+ height: 150px !important;
824
+ line-height: 150px !important;
825
+ }
826
+
827
+ .mutiple-upload-files-container .main-image .list-image .image .ant-avatar .ant-avatar-string,
828
+ .mutiple-upload-images-container .main-image .list-image .image .ant-avatar .ant-avatar-string {
829
+ line-height: 150px !important;
830
+ font-size: 40px;
831
+ }
832
+
833
+ .mutiple-upload-files-container .main-image .list-image .image .no-preview .ant-avatar-string,
834
+ .mutiple-upload-images-container .main-image .list-image .image .no-preview .ant-avatar-string {
835
+ line-height: 46px !important;
836
+ padding-top: 38px;
837
+ }
838
+
839
+ .mutiple-upload-files-container .main-image .image,
840
+ .mutiple-upload-images-container .main-image .image {
841
+ border: 1px solid #d9d9d9;
842
+ border-radius: 5px;
843
+ padding: 8px;
844
+ }
845
+
846
+ .mutiple-upload-files-container.external_url .ant-upload-picture-card-wrapper .ant-upload.ant-upload-select-picture-card:hover,
847
+ .mutiple-upload-images-container.external_url .ant-upload-picture-card-wrapper .ant-upload.ant-upload-select-picture-card:hover {
848
+ border-color: var(--hover-color);
849
+ }
850
+
851
+ .mutiple-upload-files-container .ant-upload-picture-card-wrapper,
852
+ .mutiple-upload-images-container .ant-upload-picture-card-wrapper {
853
+ margin: 4px;
854
+ }
855
+
856
+ .mutiple-upload-files-container .ant-upload-picture-card-wrapper .ant-upload.ant-upload-select-picture-card,
857
+ .mutiple-upload-images-container .ant-upload-picture-card-wrapper .ant-upload.ant-upload-select-picture-card {
858
+ margin-right: 0px;
859
+ margin-bottom: 0px;
860
+ width: 81px;
861
+ height: 81px;
862
+ }
863
+
864
+ .ant-dropdown-trigger.languages img {
865
+ margin-right: 5px;
866
+ }
867
+
868
+ .ant-dropdown-trigger.languages .anticon-down {
869
+ font-size: 14px;
870
+ color: var(--text-color);
871
+ margin-left: 5px;
872
+ }
873
+
874
+ .ant-dropdown-trigger.languages .anticon-down svg {
875
+ margin-bottom: -2px;
876
+ }
877
+
878
+ .autocomplete-menu .ant-dropdown-menu-item-group-title {
879
+ background-color: var(--background-color);
880
+ }
881
+
882
+ /* Prevent hover background on sticky menu items */
883
+ .autocomplete-menu .ant-dropdown-menu-item[style*="position: sticky"] {
884
+ background-color: white !important;
885
+ }
886
+
887
+ .autocomplete-menu .ant-dropdown-menu-item[style*="position: sticky"]:hover {
888
+ background-color: white !important;
889
+ }
890
+
891
+ /* Disabled menu item text styling */
892
+ .autocomplete-menu .ant-dropdown-menu-item-disabled {
893
+ color: var(--text-color-disabled) !important;
894
+ pointer-events: none !important;
895
+ }
896
+
897
+ .text-color {
898
+ color: var(--text-color) !important;
899
+ }
900
+
901
+ .field-container-accordion {
902
+ margin-top: 10px;
903
+ border: 1px solid rgb(228, 224, 224);
904
+ border-radius: 10px;
905
+ padding: 5px;
906
+ }
907
+
908
+ .field-container-accordion .title-is-expanded {
909
+ padding: 10px;
910
+ cursor: pointer;
911
+ }
912
+
913
+ .field-container-accordion .title-accordion {
914
+ padding: 10px;
915
+ cursor: pointer;
916
+ }
917
+
918
+ .field-container-accordion .content-accordion {
919
+ overflow: hidden;
920
+ max-height: 0;
921
+ }
922
+
923
+ .field-container-accordion .content-is-expanded {
924
+ height: 100%;
925
+ }
926
+
927
+ .select-internal {
928
+ width: 100%;
929
+ }
930
+
931
+ .select-internal .ant-select-selector {
932
+ border-radius: 0px !important;
933
+ margin-left: -7px;
934
+ }
935
+
936
+ .addon-after {
937
+ display: flex;
938
+ }
939
+
940
+ .select-queue {
941
+ width: 100%;
942
+ }
943
+
944
+ .box-select-resf {
945
+ padding-right: 6px;
946
+ }
947
+
948
+ .input-external {
949
+ width: 100%;
950
+ border-radius: 0px !important;
951
+ margin-left: -7px;
952
+ }
953
+
954
+ .restful-addon-before-new {
955
+ width: 180px !important;
956
+ }
957
+
958
+ .restful-addon-before-new .ant-select-selector {
959
+ text-align: center;
960
+ }
961
+
962
+ .custom-toast-main {
963
+ align-items: center;
964
+ }
965
+
966
+ .custom-toast-main .custom-toast-icon {
967
+ width: 1.2em;
968
+ height: 1.2em;
969
+ color: #fff;
970
+ margin-right: 10px;
971
+ margin: 10px;
972
+ }
973
+
974
+ .custom-toast-main .custom-toast-content {
975
+ padding: 10px;
976
+ background-color: #fff;
977
+ border-bottom-right-radius: 2px;
978
+ border-top-right-radius: 2px;
979
+ }
980
+
981
+ .Toastify__toast-body {
982
+ padding: unset !important;
983
+ }
984
+
985
+ .toast-close-message {
986
+ background-color: #fff;
987
+ padding-right: 10px;
988
+ padding-top: 5px;
989
+ z-index: 100;
990
+ }
991
+
992
+ .toast-close-message .toast-close-message-icon {
993
+ width: 10px;
994
+ height: 10px;
995
+ cursor: pointer;
996
+ color: #cecbcb73;
997
+ }
998
+
999
+ .custom-toast-full {
1000
+ min-width: calc(100% - 286px);
1001
+ margin-left: 250px;
1002
+ }
1003
+
1004
+ .ant-form-item-has-error .params-custom-actions-required {
1005
+ border-color: #ff4d4f !important;
1006
+ background: white !important;
1007
+ border-right: 1 !important;
1008
+ color: #ff4d4f !important;
1009
+ }
1010
+
1011
+ .button-params-no-border-right {
1012
+ border-right: none;
1013
+ }
1014
+
1015
+ .component-layout-detail-dnd .tab-layout-detail {
1016
+ overflow: scroll;
1017
+ min-width: 100%;
1018
+ min-height: 500px;
1019
+ max-height: 600px;
1020
+ }
1021
+
1022
+ .component-layout-detail-dnd .tab-layout-detail .layout-main {
1023
+ overflow: scroll;
1024
+ }
1025
+
1026
+ .component-layout-detail-dnd .tab-layout-detail .layout-main table,
1027
+ .component-layout-detail-dnd .tab-layout-detail .layout-main th,
1028
+ .component-layout-detail-dnd .tab-layout-detail .layout-main td {
1029
+ border: 1px solid #eceaea;
1030
+ border-collapse: collapse;
1031
+ }
1032
+
1033
+ .component-layout-detail-dnd .tab-layout-detail .layout-main .full-width {
1034
+ width: 100%;
1035
+ }
1036
+
1037
+ .component-layout-detail-dnd .tab-layout-detail .layout-main .layout-main-position {
1038
+ width: 100%;
1039
+ }
1040
+
1041
+ .component-layout-detail-dnd .tab-layout-detail .layout-main .position-top {
1042
+ min-height: 50px;
1043
+ display: table;
1044
+ height: 100%;
1045
+ width: 100%;
1046
+ }
1047
+
1048
+ .component-layout-detail-dnd .tab-layout-detail .layout-main .position-bottom {
1049
+ min-height: 50px;
1050
+ display: table;
1051
+ height: 100%;
1052
+ width: 100%;
1053
+ }
1054
+
1055
+ .component-layout-detail-dnd .tab-layout-detail .layout-main .disabled {
1056
+ background-color: var(--background-color);
1057
+ }
1058
+
1059
+ .component-layout-detail-dnd .tab-layout-detail .layout-main .layout-position-row-middle {
1060
+ width: 100%;
1061
+ }
1062
+
1063
+ .component-layout-detail-dnd .tab-layout-detail .layout-main .layout-row-two {
1064
+ display: flex;
1065
+ }
1066
+
1067
+ .component-layout-detail-dnd .tab-layout-detail .layout-main .border-top {
1068
+ border-top: 1px solid #eceaea;
1069
+ }
1070
+
1071
+ .component-layout-detail-dnd .tab-layout-detail .layout-main .border-left {
1072
+ border-left: 1px solid #eceaea;
1073
+ }
1074
+
1075
+ .component-layout-detail-dnd .tab-layout-detail .layout-main .border-bottom {
1076
+ border-bottom: 1px solid #eceaea;
1077
+ }
1078
+
1079
+ .component-layout-detail-dnd .tab-layout-detail .layout-main .border-right {
1080
+ border-right: 1px solid #eceaea;
1081
+ }
1082
+
1083
+ .component-layout-detail-dnd .tab-layout-detail .layout-main .layout-position-box-left {
1084
+ min-width: 255px;
1085
+ vertical-align: top;
1086
+ position: relative;
1087
+ }
1088
+
1089
+ .component-layout-detail-dnd .tab-layout-detail .layout-main .position-left {
1090
+ min-height: 250px;
1091
+ display: table;
1092
+ height: 100%;
1093
+ width: 100%;
1094
+ }
1095
+
1096
+ .component-layout-detail-dnd .tab-layout-detail .layout-main .position-middle {
1097
+ min-width: 300px;
1098
+ vertical-align: top;
1099
+ display: grid;
1100
+ }
1101
+
1102
+ .component-layout-detail-dnd .tab-layout-detail .layout-main .position-middle-box-center {
1103
+ min-height: 60%;
1104
+ display: grid;
1105
+ }
1106
+
1107
+ .component-layout-detail-dnd .tab-layout-detail .layout-main .position-middle-center {
1108
+ min-height: 150px;
1109
+ display: table;
1110
+ width: 100%;
1111
+ height: 100%;
1112
+ }
1113
+
1114
+ .component-layout-detail-dnd .tab-layout-detail .layout-main .position-middle-box-top {
1115
+ min-height: 20%;
1116
+ display: grid;
1117
+ }
1118
+
1119
+ .component-layout-detail-dnd .tab-layout-detail .layout-main .position-middle-top {
1120
+ min-height: 50px;
1121
+ display: table;
1122
+ width: 100%;
1123
+ height: 100%;
1124
+ }
1125
+
1126
+ .component-layout-detail-dnd .tab-layout-detail .layout-main .position-middle-box-bottom {
1127
+ min-height: 20%;
1128
+ display: grid;
1129
+ }
1130
+
1131
+ .component-layout-detail-dnd .tab-layout-detail .layout-main .position-middle-bottom {
1132
+ min-height: 50px;
1133
+ display: table;
1134
+ width: 100%;
1135
+ height: 100%;
1136
+ }
1137
+
1138
+ .component-layout-detail-dnd .tab-layout-detail .layout-main .position-box-right {
1139
+ min-width: 255px;
1140
+ vertical-align: top;
1141
+ position: relative;
1142
+ }
1143
+
1144
+ .component-layout-detail-dnd .tab-layout-detail .layout-main .position-right {
1145
+ min-height: 250px;
1146
+ display: table;
1147
+ height: 100%;
1148
+ width: 100%;
1149
+ }
1150
+
1151
+ .component-layout-detail-dnd .tab-layout-detail .layout-main .layout-block {
1152
+ height: 100%;
1153
+ min-height: 50px;
1154
+ display: table-cell;
1155
+ }
1156
+
1157
+ .component-layout-detail-dnd .tab-layout-detail .layout-main .layout-block .dnd-move {
1158
+ cursor: move;
1159
+ border-right: 1px dashed #d9d9d9;
1160
+ width: 25px;
1161
+ display: flex;
1162
+ justify-content: center;
1163
+ align-items: center;
1164
+ }
1165
+
1166
+ .component-layout-detail-dnd .tab-layout-detail .layout-main .layout-block .layout-block-item {
1167
+ position: relative;
1168
+ margin: 8px;
1169
+ display: flex;
1170
+ flex-direction: column;
1171
+ }
1172
+
1173
+ .component-layout-detail-dnd .tab-layout-detail .layout-main .layout-block .layout-block-item .block-item {
1174
+ display: flex;
1175
+ border: 1px dashed #f2f2f2;
1176
+ }
1177
+
1178
+ .component-layout-detail-dnd .tab-layout-detail .layout-main .layout-block .layout-block-item .block-item .item {
1179
+ width: 100%;
1180
+ padding: 5px 8px;
1181
+ display: grid;
1182
+ }
1183
+
1184
+ .component-layout-detail-dnd .tab-layout-detail .layout-main .layout-block .layout-block-item .block-item .item-rows {
1185
+ width: 100%;
1186
+ padding: 5px 8px;
1187
+ }
1188
+
1189
+ .component-layout-detail-dnd .tab-layout-detail .layout-main .layout-block .layout-block-item .block-item .icon-edit {
1190
+ cursor: pointer;
1191
+ padding-right: 5px;
1192
+ padding-top: 5px;
1193
+ color: var(--border-color-base);
1194
+ }
1195
+
1196
+ .component-layout-detail-dnd .tab-layout-detail .layout-main .layout-block .layout-block-item .block-item .icon-edit:hover {
1197
+ color: var(--text-color);
1198
+ }
1199
+
1200
+ .component-layout-detail-dnd .tab-layout-detail .layout-main .layout-block .layout-block-item .block-item .icon-remove {
1201
+ cursor: pointer;
1202
+ padding-right: 5px;
1203
+ padding-top: 5px;
1204
+ color: var(--border-color-base);
1205
+ }
1206
+
1207
+ .component-layout-detail-dnd .tab-layout-detail .layout-main .layout-block .layout-block-item .block-item .icon-remove:hover {
1208
+ color: var(--text-color);
1209
+ }
1210
+
1211
+ .component-layout-detail-dnd .tab-layout-detail .layout-main .layout-block .layout-block-item .block-columns {
1212
+ display: flex;
1213
+ border: 1px dashed #f2f2f2;
1214
+ }
1215
+
1216
+ .component-layout-detail-dnd .tab-layout-detail .layout-main .layout-block .layout-block-item .block-columns .item-columns {
1217
+ width: 100%;
1218
+ }
1219
+
1220
+ .component-layout-detail-dnd .tab-layout-detail .layout-main .layout-block .layout-block-item .block-columns .icon-edit {
1221
+ cursor: pointer;
1222
+ padding-right: 5px;
1223
+ padding-top: 5px;
1224
+ color: var(--border-color-base);
1225
+ }
1226
+
1227
+ .component-layout-detail-dnd .tab-layout-detail .layout-main .layout-block .layout-block-item .block-columns .icon-edit:hover {
1228
+ color: var(--text-color);
1229
+ }
1230
+
1231
+ .component-layout-detail-dnd .tab-layout-detail .layout-main .layout-block .layout-block-item .block-columns .icon-remove {
1232
+ cursor: pointer;
1233
+ padding-right: 5px;
1234
+ padding-top: 5px;
1235
+ color: var(--border-color-base);
1236
+ }
1237
+
1238
+ .component-layout-detail-dnd .tab-layout-detail .layout-main .layout-block .layout-block-item .block-columns .icon-remove:hover {
1239
+ color: var(--text-color);
1240
+ }
1241
+
1242
+ /* Modal Component Layout Edit Widget */
1243
+ .modal-component-layout-edit-widget .draggable-row {
1244
+ cursor: default !important;
1245
+ margin-bottom: 10px !important;
1246
+ border: 1px dashed #d9d9d9 !important;
1247
+ border-radius: 5px;
1248
+ display: flex;
1249
+ align-items: center;
1250
+ background-color: #fff;
1251
+ }
1252
+
1253
+ .modal-component-layout-edit-widget .modal-component-layout-body-collapse {
1254
+ padding: 20px;
1255
+ }
1256
+
1257
+ /* Layout Collapse */
1258
+ .layout-collapse .layout-collapse-main {
1259
+ min-width: 200px;
1260
+ width: 100%;
1261
+ margin-top: 10px;
1262
+ margin-bottom: 10px;
1263
+ margin-left: 5px;
1264
+ margin-right: 5px;
1265
+ }
1266
+
1267
+ .layout-collapse .layout-collapse-main .layout-collapse-body {
1268
+ min-height: 100px;
1269
+ display: table;
1270
+ width: 100%;
1271
+ }
1272
+
1273
+ .layout-collapse .ant-collapse-content-box {
1274
+ padding: 5px;
1275
+ }
1276
+
1277
+ /* Block Keep */
1278
+ .block-keep {
1279
+ display: flex;
1280
+ justify-content: space-between;
1281
+ }
1282
+
1283
+ .block-keep .icon-remove {
1284
+ cursor: pointer;
1285
+ z-index: 2;
1286
+ color: var(--border-color-base);
1287
+ }
1288
+
1289
+ .block-keep .icon-remove:hover {
1290
+ color: var(--text-color);
1291
+ }
1292
+
1293
+ /* Image Collapse Item */
1294
+ .image-collapse-item {
1295
+ min-height: 11rem;
1296
+ }
1297
+
1298
+ .image-collapse-item .z-index {
1299
+ z-index: 30;
1300
+ }
1301
+
1302
+ .image-collapse-main {
1303
+ min-width: 500px;
1304
+ }
1305
+
1306
+ .image-collapse-main .image-collapse .overlay {
1307
+ height: 100%;
1308
+ width: 100%;
1309
+ z-index: 10;
1310
+ position: absolute;
1311
+ display: none;
1312
+ }
1313
+
1314
+ .image-collapse-main .image-collapse-image {
1315
+ height: 10rem;
1316
+ width: 100%;
1317
+ object-fit: cover;
1318
+ }
1319
+
1320
+ .image-collapse-main .image-collapse-not-image {
1321
+ height: 10rem;
1322
+ width: 100%;
1323
+ background-color: #ededf25e;
1324
+ }
1325
+
1326
+ .image-collapse-main .image-collapse-icon {
1327
+ margin-top: -30px;
1328
+ margin-right: 10px;
1329
+ display: flex;
1330
+ justify-content: flex-end;
1331
+ }
1332
+
1333
+ .image-collapse-main .image-collapse-icon .icon-box {
1334
+ z-index: 20;
1335
+ font-weight: 700;
1336
+ height: 16px;
1337
+ width: 16px;
1338
+ cursor: pointer;
1339
+ }
1340
+
1341
+ .image-collapse-main .image-collapse-icon .icon-box .anticon-up {
1342
+ color: #fff;
1343
+ }
1344
+
1345
+ .image-collapse-main .image-collapse-icon .icon-box .anticon-down {
1346
+ color: #fff;
1347
+ }
1348
+
1349
+ .image-collapse-main .image-collapse-content {
1350
+ min-height: 10rem;
1351
+ }
1352
+
1353
+ .image-collapse-main .image-collapse-content .image-collapse-content-box {
1354
+ padding: 1rem;
1355
+ margin: 0.25rem;
1356
+ }
1357
+
1358
+ .image-collapse-main .image-collapse-content .image-collapse-content-box .title {
1359
+ margin-bottom: 0.5rem;
1360
+ }
1361
+
1362
+ .image-collapse-main .image-collapse-content .image-collapse-content-box .description {
1363
+ margin-bottom: 0.5rem;
1364
+ }
1365
+
1366
+ .image-collapse-main .hidden {
1367
+ display: none;
1368
+ }
1369
+
1370
+ .image-collapse-main .flex {
1371
+ display: flex;
1372
+ }
1373
+
1374
+ .image-collapse-main .brightness-95 {
1375
+ filter: brightness(0.95);
1376
+ }
1377
+
1378
+ .image-collapse-main .brightness-50 {
1379
+ filter: brightness(0.5);
1380
+ }
1381
+
1382
+ .image-collapse-main .rounded-lg {
1383
+ border-radius: 0.5rem;
1384
+ }
1385
+
1386
+ .image-collapse-main .rounded-t-lg {
1387
+ border-top-left-radius: 0.5rem;
1388
+ border-top-right-radius: 0.5rem;
1389
+ }
1390
+
1391
+ /* Form Widget Edit */
1392
+ .form-widget-edit .tree-lines {
1393
+ display: block;
1394
+ border: 1px dashed #d9d9d9;
1395
+ padding: 10px;
1396
+ margin-bottom: 15px;
1397
+ }
1398
+
1399
+ .form-widget-edit .tree-lines .form-item-show-label-only {
1400
+ margin-bottom: 0px !important;
1401
+ }
1402
+
1403
+ .form-widget-edit .tree-lines .tree-box-line {
1404
+ padding: 15px;
1405
+ }
1406
+
1407
+ .form-widget-edit .tree-box-name {
1408
+ display: block;
1409
+ margin-top: 20px;
1410
+ margin-bottom: 20px;
1411
+ }
1412
+
1413
+ .form-widget-edit .tree-box-icon {
1414
+ display: block;
1415
+ margin-top: 20px;
1416
+ margin-bottom: 20px;
1417
+ }
1418
+
1419
+ .form-widget-edit .label-icon {
1420
+ margin-bottom: 5px;
1421
+ }
1422
+
1423
+ .form-widget-edit .tree-icon-item {
1424
+ display: block;
1425
+ border: 1px dashed #d9d9d9;
1426
+ padding: 10px;
1427
+ margin-bottom: 15px;
1428
+ }
1429
+
1430
+ .form-widget-edit .tree-icon-item .form-item-show-label-only {
1431
+ margin-bottom: 0px !important;
1432
+ }
1433
+
1434
+ .form-widget-edit .map-box {
1435
+ display: block;
1436
+ border: 1px dashed #d9d9d9;
1437
+ padding: 10px;
1438
+ margin-bottom: 15px;
1439
+ }
1440
+
1441
+ .form-widget-edit .map-box .form-item-show-label-only {
1442
+ margin-bottom: 0px !important;
1443
+ }
1444
+
1445
+ .form-widget-edit .map-box .tree-box-line {
1446
+ padding: 15px;
1447
+ }
1448
+
1449
+ /* Navigate Tree Item */
1450
+ .navigate-tree-item .item {
1451
+ display: flex;
1452
+ justify-content: center;
1453
+ }
1454
+
1455
+ .navigate-tree-item .slick-navigate-main {
1456
+ width: 450px;
1457
+ padding: 1rem;
1458
+ align-items: center;
1459
+ justify-content: center;
1460
+ display: flex;
1461
+ max-width: 450px;
1462
+ }
1463
+
1464
+ .navigate-tree-item .item-action {
1465
+ padding: 0.5rem;
1466
+ border-radius: 9999px;
1467
+ height: 3.5rem;
1468
+ width: 3.5rem;
1469
+ background-color: darkgreen;
1470
+ }
1471
+
1472
+ .navigate-tree-item .item-radius-two {
1473
+ padding: 0.5rem;
1474
+ border-radius: 9999px;
1475
+ height: 4rem;
1476
+ width: 4rem;
1477
+ background-color: rgb(156, 243, 156);
1478
+ }
1479
+
1480
+ .navigate-tree-item .item-radius-three {
1481
+ padding: 0.5rem;
1482
+ border-radius: 9999px;
1483
+ height: 3rem;
1484
+ width: 3rem;
1485
+ background-color: rgb(156, 243, 156);
1486
+ }
1487
+
1488
+ .navigate-tree-item .item-box {
1489
+ display: flex;
1490
+ justify-content: center;
1491
+ }
1492
+
1493
+ .navigate-tree-item .item-box .leading-relaxed {
1494
+ width: 100%;
1495
+ height: 100%;
1496
+ align-items: center;
1497
+ display: flex;
1498
+ justify-content: center;
1499
+ font-size: 1rem;
1500
+ color: #fff;
1501
+ }
1502
+
1503
+ .navigate-tree-item .cursor-item {
1504
+ cursor: pointer;
1505
+ }
1506
+
1507
+ .navigate-tree-item .text-base {
1508
+ font-size: 1rem;
1509
+ line-height: 1.5rem;
1510
+ margin-top: 1rem;
1511
+ }
1512
+
1513
+ /* Carousel Item */
1514
+ .carousel-item .box-content {
1515
+ width: 100%;
1516
+ position: relative;
1517
+ }
1518
+
1519
+ .carousel-item .image {
1520
+ width: 100%;
1521
+ height: 66%;
1522
+ object-fit: cover;
1523
+ }
1524
+
1525
+ .carousel-item .label-image {
1526
+ bottom: 0.25rem;
1527
+ left: 15px;
1528
+ position: absolute;
1529
+ z-index: 30;
1530
+ margin-top: -30px;
1531
+ }
1532
+
1533
+ /* Google Map Item */
1534
+ .googl-map-item {
1535
+ min-height: 200px;
1536
+ }
1537
+
1538
+ .googl-map-item .map-mode-one-box {
1539
+ width: 100%;
1540
+ height: 30vh;
1541
+ }
1542
+
1543
+ .googl-map-item .map-mode-two-box {
1544
+ min-width: 500px;
1545
+ width: 100%;
1546
+ height: 30vh;
1547
+ }
1548
+
1549
+ .googl-map-item .map-mode-two-main {
1550
+ width: 100%;
1551
+ display: flex;
1552
+ align-items: center;
1553
+ align-self: center;
1554
+ text-align: center;
1555
+ justify-content: center;
1556
+ }
1557
+
1558
+ .googl-map-item .map-mode-two-main .text-location {
1559
+ font-weight: 900;
1560
+ line-height: 1.75rem;
1561
+ font-size: 20px;
1562
+ color: #000;
1563
+ }
1564
+
1565
+ .googl-map-item .map-mode-two-main .text-address {
1566
+ font-weight: 600;
1567
+ line-height: 1.75rem;
1568
+ font-size: 20px;
1569
+ }
1570
+
1571
+ /* Render Tabs Component */
1572
+ .render-tabs-component .component-layout-detail .ant-tabs-tab {
1573
+ border: unset !important;
1574
+ border-bottom: unset !important;
1575
+ background-color: unset !important;
1576
+ }
1577
+
1578
+ .slick-list {
1579
+ width: 100%;
1580
+ }
1581
+
1582
+ .customCenterCarousels .slick-slide:not(.slick-active) {
1583
+ opacity: 30%;
1584
+ }
1585
+
1586
+ .slider-nextarrow {
1587
+ position: absolute;
1588
+ top: 50%;
1589
+ right: 0px;
1590
+ z-index: 40;
1591
+ cursor: pointer;
1592
+ }
1593
+
1594
+ .slider-nextarrow-box {
1595
+ height: 40px;
1596
+ width: 40px;
1597
+ display: flex;
1598
+ justify-content: center;
1599
+ padding: 8px;
1600
+ }
1601
+
1602
+ .slider-prevarrow {
1603
+ position: absolute;
1604
+ top: 50%;
1605
+ left: 0px;
1606
+ z-index: 40;
1607
+ cursor: pointer;
1608
+ }
1609
+
1610
+ .slider-prevarrow-box {
1611
+ height: 40px;
1612
+ width: 40px;
1613
+ display: flex;
1614
+ justify-content: center;
1615
+ padding: 8px;
1616
+ }
1617
+
1618
+ .empty-layout-block {
1619
+ min-height: 60px;
1620
+ }
1621
+
1622
+ .empty-layout-block .item-empty {
1623
+ background-color: #dfdfe0;
1624
+ height: 50px;
1625
+ }
1626
+
1627
+ .button-layout-main {
1628
+ display: flex;
1629
+ justify-content: center;
1630
+ padding: 5px;
1631
+ }
1632
+
1633
+ .layout-content {
1634
+ min-height: 150px;
1635
+ width: 100%;
1636
+ margin-top: 20px;
1637
+ }
1638
+
1639
+ .layout-content {
1640
+ padding: 10px;
1641
+ }
1642
+
1643
+ .ant-modal-content {
1644
+ padding: 0px !important;
1645
+ background-color: #ffffff !important;
1646
+ }
1647
+
1648
+ .ant-modal-header {
1649
+ padding: 16px 24px !important;
1650
+ border-bottom: 1px solid #f0f0f0 !important;
1651
+ background-color: #ffffff !important;
1652
+
1653
+ }
1654
+
1655
+ .ant-modal-body {
1656
+ padding: 16px 24px !important;
1657
+ }
1658
+
1659
+ .ant-modal-footer {
1660
+ padding: 10px 16px !important;
1661
+ border-top: 1px solid #f0f0f0 !important;
1662
+ }
1663
+
1664
+ .ant-switch.ant-switch-checked .ant-switch-inner {
1665
+ background-color: var(--primary-color);
1666
+ }
1667
+
1668
+ .ant-switch-inner {
1669
+ background-color: #dfdfdf;
1670
+ }
1671
+
1672
+ .layout-content .layout-content-body {
1673
+ min-height: 100px;
1674
+ display: table;
1675
+ width: 100%;
1676
+ }
1677
+
1678
+ .layout-content .ant-collapse-content-box {
1679
+ padding: 5px;
1680
+ }
1681
+
1682
+ /* Navigate Tree Main */
1683
+ .navigate-tree-main {
1684
+ min-height: 100%;
1685
+ background-color: #f9f5f1;
1686
+ overflow: hidden;
1687
+ position: relative;
1688
+ width: 100%;
1689
+ min-width: 500px;
1690
+ }
1691
+
1692
+ .navigate-tree-main .navigate-tree-box {
1693
+ display: flex;
1694
+ flex-direction: row;
1695
+ justify-content: space-between;
1696
+ }
1697
+
1698
+ .navigate-tree-main .transaction-box {
1699
+ width: 16%;
1700
+ display: flex;
1701
+ flex-direction: row;
1702
+ justify-content: end;
1703
+ align-items: center;
1704
+ background: #f5ede8;
1705
+ color: #d9d9d9;
1706
+ }
1707
+
1708
+ .navigate-tree-main .transaction-box .transaction-item {
1709
+ display: flex;
1710
+ flex-direction: column;
1711
+ padding-right: 4px;
1712
+ justify-content: center;
1713
+ align-items: flex-end;
1714
+ }
1715
+
1716
+ .navigate-tree-main .transaction-box .transaction-item .text-title {
1717
+ font-size: 8px;
1718
+ line-height: 10px;
1719
+ max-width: 110px;
1720
+ float: right;
1721
+ font-weight: 500;
1722
+ text-align: right;
1723
+ }
1724
+
1725
+ .navigate-tree-main .transaction-box .transaction-item .text-description {
1726
+ font-size: 8px;
1727
+ line-height: 10px;
1728
+ max-width: 110px;
1729
+ float: right;
1730
+ font-weight: 500;
1731
+ }
1732
+
1733
+ .navigate-tree-main .icon-transaction {
1734
+ border-top-color: transparent;
1735
+ border-bottom-color: transparent;
1736
+ border-right-color: #c4c4c4;
1737
+ border-top-width: 6px;
1738
+ border-bottom-width: 6px;
1739
+ border-right-width: 8px;
1740
+ width: 0;
1741
+ height: 0;
1742
+ border: 0 solid #e5e7eb;
1743
+ }
1744
+
1745
+ .navigate-tree-main .line-item {
1746
+ width: 70px;
1747
+ margin-left: 10px;
1748
+ padding-right: 5px;
1749
+ padding-left: 5px;
1750
+ padding-top: 0px;
1751
+ padding-bottom: 0px;
1752
+ align-items: flex-end;
1753
+ justify-content: space-between;
1754
+ flex-direction: row;
1755
+ display: flex;
1756
+ }
1757
+
1758
+ .navigate-tree-main .line-item .h-12 {
1759
+ background-color: transparent;
1760
+ height: 50%;
1761
+ position: relative;
1762
+ width: 3px;
1763
+ }
1764
+
1765
+ .navigate-tree-main .line-item .h-full {
1766
+ background-color: transparent;
1767
+ height: 100%;
1768
+ position: relative;
1769
+ width: 3px;
1770
+ }
1771
+
1772
+ .navigate-tree-main .line-item .eveent-icon-box {
1773
+ height: 24px;
1774
+ width: 24px;
1775
+ position: absolute;
1776
+ left: -10.5px;
1777
+ border-radius: 15px;
1778
+ }
1779
+
1780
+ .navigate-tree-main .line-item .eveent-icon-box .icon {
1781
+ width: 16px;
1782
+ height: 16px;
1783
+ margin-top: 4px;
1784
+ margin-left: 4px;
1785
+ }
1786
+
1787
+ .navigate-tree-main .line-item .top-12 {
1788
+ top: -12px;
1789
+ }
1790
+
1791
+ .navigate-tree-main .line-item .top-26 {
1792
+ top: 26px;
1793
+ }
1794
+
1795
+ .navigate-tree-main .box-items {
1796
+ display: flex;
1797
+ padding: 10px;
1798
+ flex: 1 1 0%;
1799
+ }
1800
+
1801
+ .navigate-tree-main .drop-shadow-md {
1802
+ width: 100%;
1803
+ height: 100%;
1804
+ background-color: #fff;
1805
+ border-radius: 5px;
1806
+ flex-direction: row;
1807
+ }
1808
+
1809
+ .navigate-tree-main .drop-shadow-md .card-item {
1810
+ padding-top: 5px;
1811
+ padding-bottom: 5px;
1812
+ padding-left: 10px;
1813
+ padding-right: 10px;
1814
+ display: flex;
1815
+ flex-direction: column;
1816
+ }
1817
+
1818
+ .navigate-tree-main .drop-shadow-md .card-item .font-title {
1819
+ font-size: 14px;
1820
+ font-weight: 700;
1821
+ margin: 0px;
1822
+ }
1823
+
1824
+ .navigate-tree-main .drop-shadow-md .card-item .font-description {
1825
+ font-size: 12px;
1826
+ font-weight: 200;
1827
+ margin: 0px;
1828
+ }
1829
+
1830
+ .navigate-tree-main .arrow-down-icon-box {
1831
+ height: 100%;
1832
+ width: 60px;
1833
+ border-radius: 5px;
1834
+ display: flex;
1835
+ align-items: center;
1836
+ cursor: pointer;
1837
+ align-items: center;
1838
+ justify-content: center;
1839
+ }
1840
+
1841
+ .navigate-tree-main .arrow-down-icon {
1842
+ color: #fff;
1843
+ }
1844
+
1845
+ .navigate-tree-main .line-item-end-main {
1846
+ flex: 1 1 0%;
1847
+ flex-direction: row;
1848
+ background: #f9f5f1;
1849
+ display: flex;
1850
+ }
1851
+
1852
+ .navigate-tree-main .line-item-end-main .line-item-end-one {
1853
+ width: 16%;
1854
+ padding-right: 4px;
1855
+ flex-direction: row;
1856
+ justify-content: center;
1857
+ align-items: flex-end;
1858
+ }
1859
+
1860
+ .navigate-tree-main .line-item-end-main .line-item-end-item {
1861
+ width: 70px;
1862
+ height: 100px;
1863
+ display: flex;
1864
+ flex-direction: row;
1865
+ justify-content: space-between;
1866
+ position: relative;
1867
+ margin-left: 10px;
1868
+ position: relative;
1869
+ padding-left: 5px;
1870
+ padding-right: 5px;
1871
+ }
1872
+
1873
+ .navigate-tree-main .line-item-end-main .line-end-1 {
1874
+ height: 2px;
1875
+ width: 3px;
1876
+ position: relative;
1877
+ }
1878
+
1879
+ .navigate-tree-main .line-item-end-main .line-end-1 .mid {
1880
+ height: 15px;
1881
+ width: 15px;
1882
+ position: absolute;
1883
+ top: 2px;
1884
+ left: 0px;
1885
+ border-left: 3px;
1886
+ }
1887
+
1888
+ .navigate-tree-main .line-item-end-main .line-end-1 .left {
1889
+ height: 15px;
1890
+ width: 15px;
1891
+ position: absolute;
1892
+ top: 2px;
1893
+ left: 0px;
1894
+ border-bottom-left-radius: 40px;
1895
+ border-left-width: 3px;
1896
+ border-left-style: solid;
1897
+ border-bottom-width: 3px;
1898
+ border-bottom-style: solid;
1899
+ }
1900
+
1901
+ .navigate-tree-main .line-item-end-main .line-end-1 .right {
1902
+ height: 15px;
1903
+ width: 15px;
1904
+ position: absolute;
1905
+ top: 2px;
1906
+ right: 0px;
1907
+ border-bottom-right-radius: 40px;
1908
+ border-right-width: 3px;
1909
+ border-right-style: solid;
1910
+ border-bottom-width: 3px;
1911
+ border-bottom-style: solid;
1912
+ }
1913
+
1914
+ .navigate-tree-main .brand-box-bnd {
1915
+ position: absolute;
1916
+ height: 40px;
1917
+ width: 40px;
1918
+ top: 0;
1919
+ left: 15px;
1920
+ z-index: 10;
1921
+ border-radius: 30px;
1922
+ }
1923
+
1924
+ .navigate-tree-main .image-brand {
1925
+ height: 40px;
1926
+ width: 40px;
1927
+ border-radius: 20px;
1928
+ }
1929
+
1930
+ .navigate-tree-main .brand_end_line {
1931
+ position: absolute;
1932
+ border-left: 3px;
1933
+ border-bottom: 3px;
1934
+ height: 15px;
1935
+ width: 80px;
1936
+ top: 40px;
1937
+ left: 35px;
1938
+ border-left-width: 3px;
1939
+ border-left-style: solid;
1940
+ border-bottom-width: 3px;
1941
+ border-bottom-style: solid;
1942
+ }
1943
+
1944
+ .navigate-tree-main .shipping {
1945
+ position: absolute;
1946
+ top: 41.5px;
1947
+ left: 100px;
1948
+ font-size: 14px;
1949
+ padding-left: 30px;
1950
+ padding-top: 1px;
1951
+ flex-direction: row;
1952
+ display: flex;
1953
+ }
1954
+
1955
+ .navigate-tree-main .double-right-outlined {
1956
+ position: absolute;
1957
+ top: 46px;
1958
+ left: 105px;
1959
+ width: 1.5rem;
1960
+ height: 1.5rem;
1961
+ }
1962
+
1963
+ /* Box Scrollable List */
1964
+ .box-scrollable-list {
1965
+ border: 1px dashed #d9d9d9;
1966
+ padding: 10px;
1967
+ }
1968
+
1969
+ .scrollable-list {
1970
+ display: flex;
1971
+ width: 100%;
1972
+ }
1973
+
1974
+ .scrollable-list .list-dnd {
1975
+ width: 100%;
1976
+ display: flex;
1977
+ margin: 8px;
1978
+ border: 1px solid #bfbfbf !important;
1979
+ border-radius: 6px;
1980
+ background-color: #fafafa;
1981
+ }
1982
+
1983
+ .scrollable-list .list-dnd .dnd-move {
1984
+ border-right: 1px solid #bfbfbf;
1985
+ padding: 8px;
1986
+ }
1987
+
1988
+ .scrollable-list .list-dnd .dnd-box {
1989
+ width: 100%;
1990
+ }
1991
+
1992
+ .scrollable-list .list-dnd .content {
1993
+ padding: 8px;
1994
+ flex: 1 1;
1995
+ white-space: nowrap;
1996
+ overflow: hidden;
1997
+ text-overflow: ellipsis;
1998
+ cursor: pointer;
1999
+ }
2000
+
2001
+ .scrollable-list .list-dnd .visibility-toggle {
2002
+ cursor: pointer;
2003
+ padding-top: 8px;
2004
+ padding-bottom: 8px;
2005
+ padding-inline-start: 8px;
2006
+ }
2007
+
2008
+ .scrollable-list .list-dnd .remove {
2009
+ display: block;
2010
+ width: 30px;
2011
+ padding: 8px;
2012
+ cursor: pointer;
2013
+ }
2014
+
2015
+ /* Dropdown List DND */
2016
+ .dropdown-list-dnd {
2017
+ width: 100%;
2018
+ margin: 8px;
2019
+ border: 1px solid #c59b7c !important;
2020
+ border-radius: 6px;
2021
+ padding: 6px;
2022
+ display: flex;
2023
+ justify-content: center;
2024
+ cursor: pointer;
2025
+ }
2026
+
2027
+ .dropdown-list-dnd .plus-field {
2028
+ width: 100%;
2029
+ display: flex;
2030
+ justify-content: center;
2031
+ color: #c59b7c;
2032
+ }
2033
+
2034
+ .dropdown-list-dnd .plus-field .anticon {
2035
+ align-self: center;
2036
+ padding-right: 5px;
2037
+ }
2038
+
2039
+ .dropdown-list-dnd .box-button-list {
2040
+ background-color: #ff4d4f;
2041
+ display: flex;
2042
+ background-color: #ff4d4f;
2043
+ width: 100%;
2044
+ }
2045
+
2046
+ .widget-list span {
2047
+ margin-left: 0px !important;
2048
+ display: flex;
2049
+ justify-content: center;
2050
+ align-items: center;
2051
+ padding-top: 5px;
2052
+ padding-bottom: 5px;
2053
+ }
2054
+
2055
+ .icon-layout {
2056
+ position: relative;
2057
+ margin-right: 8px;
2058
+ margin-top: 8px;
2059
+ display: flex;
2060
+ align-items: flex-end;
2061
+ justify-content: flex-end;
2062
+ }
2063
+
2064
+ .icon-edit-title {
2065
+ margin-bottom: 0px !important;
2066
+ }
2067
+
2068
+ .loop-data-title {
2069
+ color: #d9d9d9;
2070
+ }
2071
+
2072
+ .loop-data-content {
2073
+ min-height: 150px;
2074
+ display: table;
2075
+ width: 100%;
2076
+ }
2077
+
2078
+ .layout-icon-setting-widgets {
2079
+ display: none;
2080
+ }
2081
+
2082
+ .layout-icon-setting-widgets-wysiwyg {
2083
+ display: none;
2084
+ }
2085
+
2086
+ .layout-icon-setting-collapse {
2087
+ display: none;
2088
+ }
2089
+
2090
+ .layout-icon-setting-frame {
2091
+ display: none;
2092
+ }
2093
+
2094
+ .layout-icon-setting-chart {
2095
+ display: none;
2096
+ }
2097
+
2098
+ .layout-block-item-columns:hover .layout-icon-setting-widgets {
2099
+ display: flex;
2100
+ position: absolute;
2101
+ top: 1px;
2102
+ right: 0px;
2103
+ z-index: 9;
2104
+ }
2105
+
2106
+ .layout-block-item:hover .layout-icon-setting-widgets {
2107
+ display: flex;
2108
+ position: absolute;
2109
+ top: 1px;
2110
+ right: 0px;
2111
+ z-index: 9;
2112
+ }
2113
+
2114
+ .layout-block-item:hover .layout-icon-setting-widgets-wysiwyg {
2115
+ display: flex;
2116
+ position: absolute;
2117
+ top: -8px;
2118
+ right: 0px;
2119
+ z-index: 9;
2120
+ }
2121
+
2122
+ .layout-block-item:hover .layout-icon-setting-collapse {
2123
+ display: flex;
2124
+ position: absolute;
2125
+ top: 20px;
2126
+ right: 12px;
2127
+ z-index: 9;
2128
+ }
2129
+
2130
+ .layout-block-item:hover .layout-icon-setting-frame {
2131
+ display: flex;
2132
+ position: absolute;
2133
+ top: 0px;
2134
+ right: 5px;
2135
+ z-index: 9;
2136
+ }
2137
+
2138
+ .layout-block-item:hover .layout-icon-setting-chart {
2139
+ display: flex;
2140
+ position: absolute;
2141
+ top: 5px;
2142
+ right: 5px;
2143
+ z-index: 9;
2144
+ }
2145
+
2146
+ /* Frame Layout Main */
2147
+ .frame-layout-main {
2148
+ border: 1px dashed #d9d9d9;
2149
+ overflow: scroll;
2150
+ width: 100%;
2151
+ background-color: #f6f7f9;
2152
+ border-radius: 5px;
2153
+ }
2154
+
2155
+ .frame-box-row-one {
2156
+ display: flex;
2157
+ }
2158
+
2159
+ .frame-box-row-two {
2160
+ display: flex;
2161
+ }
2162
+
2163
+ .border-right {
2164
+ border-right: 1px dashed #d9d9d9;
2165
+ }
2166
+
2167
+ .icon-setting-open-modal-css {
2168
+ display: flex;
2169
+ align-items: flex-end;
2170
+ justify-content: flex-end;
2171
+ padding: 5px;
2172
+ cursor: pointer;
2173
+ }
2174
+
2175
+ /* Style Custom Main */
2176
+ .style-custom-main-three-one {
2177
+ display: flex;
2178
+ overflow: scroll;
2179
+ width: 100%;
2180
+ border: 1px dashed #d9d9d9;
2181
+ background-color: #f6f7f9;
2182
+ }
2183
+
2184
+ .style-custom-main-three-one .style-custom-content-one {
2185
+ border-right: 1px dashed #d9d9d9;
2186
+ }
2187
+
2188
+ .style-custom-main-three-one .style-custom-box-three-two {
2189
+ display: flex;
2190
+ border-bottom: 1px dashed #d9d9d9;
2191
+ }
2192
+
2193
+ .style-custom-main-three-two {
2194
+ display: flex;
2195
+ overflow: scroll;
2196
+ width: 100%;
2197
+ border: 1px dashed #d9d9d9;
2198
+ background-color: #f6f7f9;
2199
+ }
2200
+
2201
+ .style-custom-main-three-two .style-custom-content-one {
2202
+ border-right: 1px dashed #d9d9d9;
2203
+ }
2204
+
2205
+ .style-custom-main-three-two .style-custom-box-three {
2206
+ display: flex;
2207
+ }
2208
+
2209
+ .style-custom-main-three-two .style-custom-content-two {
2210
+ border-bottom: 1px dashed #d9d9d9;
2211
+ }
2212
+
2213
+ .style-custom-main-three-two .style-custom-content-three {
2214
+ border-right: 1px dashed #d9d9d9;
2215
+ }
2216
+
2217
+ .style-custom-main-three-four {
2218
+ display: flex;
2219
+ overflow: scroll;
2220
+ width: 100%;
2221
+ border: 1px dashed #d9d9d9;
2222
+ background-color: #f6f7f9;
2223
+ }
2224
+
2225
+ .style-custom-main-three-four .style-custom-box-one {
2226
+ border-right: 1px dashed #d9d9d9;
2227
+ }
2228
+
2229
+ .style-custom-main-three-four .style-custom-content-two {
2230
+ border-right: 1px dashed #d9d9d9;
2231
+ }
2232
+
2233
+ .style-custom-main-three-four .style-custom-content-one {
2234
+ border-bottom: 1px dashed #d9d9d9;
2235
+ }
2236
+
2237
+ .style-custom-main-three-four .style-custom-box-two {
2238
+ display: flex;
2239
+ }
2240
+
2241
+ .style-custom-main-three-three {
2242
+ display: flex;
2243
+ overflow: scroll;
2244
+ width: 100%;
2245
+ border: 1px dashed #d9d9d9;
2246
+ background-color: #f6f7f9;
2247
+ }
2248
+
2249
+ .style-custom-main-three-three .style-custom-content-one {
2250
+ display: flex;
2251
+ }
2252
+
2253
+ .style-custom-main-three-three .style-custom-box-one {
2254
+ border-right: 1px dashed #d9d9d9;
2255
+ }
2256
+
2257
+ .style-custom-main-three-three .style-custom-content-two {
2258
+ border-left: 1px dashed #d9d9d9;
2259
+ }
2260
+
2261
+ .style-custom-main-three-three .style-custom-content-box-one {
2262
+ border-bottom: 1px dashed #d9d9d9;
2263
+ display: flex;
2264
+ }
2265
+
2266
+ .frame-box-row-two .frame-content-row-two {
2267
+ border-top: 1px dashed #d9d9d9;
2268
+ }
2269
+
2270
+ /* Pipeline List */
2271
+ .pipeline-list {
2272
+ background-color: #efefef;
2273
+ padding: 2px 10px 8px 10px;
2274
+ width: 100%;
2275
+ }
2276
+
2277
+ .pipeline-list-child {
2278
+ background-color: #efefef;
2279
+ padding: 2px 10px 8px 10px;
2280
+ width: 100%;
2281
+ }
2282
+
2283
+ .pipeline-item {
2284
+ margin: 10px 0px;
2285
+ min-height: 60px;
2286
+ background-color: white;
2287
+ border-bottom: 1px solid var(--border-color-split);
2288
+ display: flex;
2289
+ border-radius: 5px;
2290
+ cursor: pointer;
2291
+ overflow-x: hidden;
2292
+ position: relative;
2293
+ }
2294
+
2295
+ .pipeline-item.active {
2296
+ background-color: rgba(253, 223, 151, 0.5);
2297
+ }
2298
+
2299
+ .modal-component-layout-edit-widget .modal-setting-advance-select .ant-form-item-has-success {
2300
+ display: contents !important;
2301
+ }
2302
+
2303
+ .component-container-body-share {
2304
+ max-height: 280px;
2305
+ overflow: scroll;
2306
+ }
2307
+
2308
+ /* .wigeta-content-row {
2309
+ } */
2310
+
2311
+ .wigeta-rows-layout-main {
2312
+ overflow: scroll;
2313
+ width: 100%;
2314
+ background-color: #fff;
2315
+ border-radius: 5px;
2316
+ }
2317
+
2318
+ .wigeta-layout-main {
2319
+ display: grid;
2320
+ width: 100%;
2321
+ min-height: 40px;
2322
+ }
2323
+
2324
+ .layout-icon-setting-widgets-columns {
2325
+ display: flex;
2326
+ position: absolute;
2327
+ top: 1px;
2328
+ right: 0px;
2329
+ z-index: 9;
2330
+ }
2331
+
2332
+ .layout-icon-setting-widgets-columns {
2333
+ display: none;
2334
+ }
2335
+
2336
+ .layout-icon-setting-widgets-icon {
2337
+ display: none;
2338
+ }
2339
+
2340
+ .layout-block:hover .layout-icon-setting-widgets-icon {
2341
+ display: flex;
2342
+ position: absolute;
2343
+ top: 1px;
2344
+ right: 0px;
2345
+ z-index: 9;
2346
+ }
2347
+
2348
+ .main-content-margin {
2349
+ display: flex;
2350
+ width: 350px;
2351
+ }
2352
+
2353
+ .main-content-margin .ant-form-item {
2354
+ margin-bottom: 0px;
2355
+ }
2356
+
2357
+ .main-content-margin .ant-form-item .ant-form-item-control-input {
2358
+ min-height: unset;
2359
+ }
2360
+
2361
+ .box-content-margin {
2362
+ width: 80px;
2363
+ padding-top: 5px;
2364
+ padding-bottom: 5px;
2365
+ align-items: center;
2366
+ display: flex;
2367
+ justify-content: center;
2368
+ }
2369
+
2370
+ .box-content-margin {
2371
+ padding-top: 0px;
2372
+ padding-bottom: 0px;
2373
+ width: 70px;
2374
+ }
2375
+
2376
+ .box-content-margin .input-margin {
2377
+ border: unset !important;
2378
+ box-shadow: unset !important;
2379
+ }
2380
+
2381
+ .box-content-margin-type {
2382
+ width: 50px;
2383
+ background-color: rgb(238, 237, 237);
2384
+ border-top-right-radius: 5px;
2385
+ border-bottom-right-radius: 5px;
2386
+ border-right: 1px solid #e0dcdc;
2387
+ border-bottom: 1px solid #e0dcdc;
2388
+ border-top: 1px solid #e0dcdc;
2389
+ height: 32px;
2390
+ display: flex;
2391
+ align-items: center;
2392
+ justify-content: center;
2393
+ }
2394
+
2395
+ .margin-border-one {
2396
+ border-top-left-radius: 5px;
2397
+ border-bottom-left-radius: 5px;
2398
+ border-top: 1px solid #e0dcdc;
2399
+ border-left: 1px solid #e0dcdc;
2400
+ border-bottom: 1px solid #e0dcdc;
2401
+ }
2402
+
2403
+ .margin-border-two {
2404
+ border-top: 1px solid #e0dcdc;
2405
+ border-left: 1px solid #e0dcdc;
2406
+ border-bottom: 1px solid #e0dcdc;
2407
+ }
2408
+
2409
+ .margin-test {
2410
+ display: flex;
2411
+ align-items: center;
2412
+ justify-content: center;
2413
+ color: #c4c4c4;
2414
+ font-size: 10px;
2415
+ }
2416
+
2417
+ .margin-border-right {
2418
+ border-right: 1px solid #e0dcdc;
2419
+ }
2420
+
2421
+ .layout-icon-setting-widgets-icons {
2422
+ display: none;
2423
+ }
2424
+
2425
+ .layout-icon-setting-widgets-icons-columns {
2426
+ display: none;
2427
+ }
2428
+
2429
+ .wigeta-layout-block-item:hover>.block-item>.layout-icon-setting-widgets-icons {
2430
+ display: block;
2431
+ }
2432
+
2433
+ .wigeta-layout-block-item:hover>.block-item>.layout-icon-setting-widgets-icons .setting-widgets-icons {
2434
+ display: flex;
2435
+ padding: 0 5px;
2436
+ position: absolute;
2437
+ right: 2px;
2438
+ top: -21px;
2439
+ transform-origin: 0 0;
2440
+ transition: 0.1s ease-in-out;
2441
+ z-index: 9;
2442
+ }
2443
+
2444
+ .wigeta-layout-block-item:hover>.block-item>.layout-icon-setting-widgets-icons-columns {
2445
+ display: block;
2446
+ }
2447
+
2448
+ .wigeta-layout-block-item:hover>.block-item>.layout-icon-setting-widgets-icons-columns .setting-widgets-icons {
2449
+ display: flex;
2450
+ padding: 0 5px;
2451
+ position: absolute;
2452
+ right: 2px;
2453
+ top: -20px;
2454
+ transform-origin: 0 0;
2455
+ transition: 0.1s ease-in-out;
2456
+ z-index: 9;
2457
+ }
2458
+
2459
+ .wigeta-layout-block-item:hover>.block-item {
2460
+ background-color: rgb(212, 234, 255);
2461
+ }
2462
+
2463
+ .wigeta-layout-block-item:hover>.block-item>.wigeta-item>div>.wigeta-layout-main {
2464
+ border: unset;
2465
+ }
2466
+
2467
+ .wigeta-layout-block-item:has(.wigeta-layout-block-item:hover)>.block-item>div>.wigeta-item>.wigeta-layout-main {
2468
+ border: 1px solid #fff;
2469
+ }
2470
+
2471
+ .wigeta-layout-block-item:has(.wigeta-layout-block-item:hover)>.block-item {
2472
+ background-color: #fff;
2473
+ }
2474
+
2475
+ .wigeta-layout-block-item:has(.wigeta-layout-block-item:hover)>.block-item>.layout-icon-setting-widgets-icons {
2476
+ display: none;
2477
+ }
2478
+
2479
+ .wigeta-layout-block-item:has(.wigeta-layout-block-item:hover)>.block-item>.layout-icon-setting-widgets-icons-columns {
2480
+ display: none;
2481
+ }
2482
+
2483
+ .setting-widgets-icons {
2484
+ display: flex;
2485
+ padding: 0 5px;
2486
+ position: absolute;
2487
+ right: 10px;
2488
+ top: -20px;
2489
+ transform-origin: 0 0;
2490
+ transition: 0.1s ease-in-out;
2491
+ box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
2492
+ z-index: 9;
2493
+ }
2494
+
2495
+ .setting-widgets-icons .icon-edit {
2496
+ padding-top: 0px !important;
2497
+ }
2498
+
2499
+ .setting-widgets-icons .icon-remove {
2500
+ padding-top: 0px !important;
2501
+ }
2502
+
2503
+ .wigeta-layout-block-item {
2504
+ position: relative;
2505
+ margin: 10px 5px;
2506
+ display: flex;
2507
+ flex-direction: column;
2508
+ background-color: #fff;
2509
+ }
2510
+
2511
+ .wigeta-layout-block-item .block-item {
2512
+ display: flex;
2513
+ border: 1px dashed #f2f2f2;
2514
+ }
2515
+
2516
+ .wigeta-layout-block-item .block-item .wigeta-item {
2517
+ width: 100%;
2518
+ display: grid;
2519
+ }
2520
+
2521
+ .wigeta-layout-block-item .block-item .icon-edit {
2522
+ cursor: pointer;
2523
+ padding-right: 5px;
2524
+ padding-top: 5px;
2525
+ color: var(--border-color-base);
2526
+ }
2527
+
2528
+ .wigeta-layout-block-item .block-item .icon-edit:hover {
2529
+ color: var(--text-color);
2530
+ }
2531
+
2532
+ .wigeta-layout-block-item .block-item .icon-remove {
2533
+ cursor: pointer;
2534
+ padding-right: 5px;
2535
+ padding-top: 5px;
2536
+ color: var(--border-color-base);
2537
+ }
2538
+
2539
+ .wigeta-layout-block-item .block-item .icon-remove:hover {
2540
+ color: var(--text-color);
2541
+ }
2542
+
2543
+ .module-item {
2544
+ border: 2px solid transparent !important;
2545
+ border-radius: 8px;
2546
+ }
2547
+
2548
+ .module-item:hover {
2549
+ border: 2px solid var(--table-row-hover-bg) !important;
2550
+ border-radius: 8px;
2551
+ cursor: pointer;
2552
+ }
2553
+
2554
+ .grid-module {
2555
+ display: grid;
2556
+ grid-template-columns: repeat(auto-fill, minmax(9rem, 1fr));
2557
+ grid-auto-rows: 1fr;
2558
+ }
2559
+
2560
+ .grid-module::before {
2561
+ content: "";
2562
+ width: 0;
2563
+ padding-bottom: 100%;
2564
+ grid-row: 1 / 1;
2565
+ grid-column: 1 / 1;
2566
+ }
2567
+
2568
+ .grid-module>*:first-child {
2569
+ grid-row: 1 / 1;
2570
+ grid-column: 1 / 1;
2571
+ }
2572
+
2573
+ .grid-module>* {
2574
+ margin-right: 5px;
2575
+ }
2576
+
2577
+ .modal-change-password .mutiline-format {
2578
+ margin-bottom: 0px;
2579
+ }
2580
+
2581
+ /* Fix Ant Design v5 tabs ink-bar double line issue */
2582
+ .ant-tabs .ant-tabs-ink-bar {
2583
+ background: var(--primary-color) !important;
2584
+ height: 2px !important;
2585
+ border-radius: 1px !important;
2586
+ }
2587
+
2588
+ .ant-tabs .ant-tabs-tab::after {
2589
+ display: none !important;
2590
+ }
2591
+
2592
+ .ant-tabs .ant-tabs-tab::before {
2593
+ display: none !important;
2594
+ }
2595
+
2596
+ .ant-drawer-content.import-export .ant-drawer-body .progress {
2597
+ padding: 0 24px;
2598
+ margin-bottom: 15px;
2599
+ }
2600
+
2601
+ .ant-drawer-header .ant-drawer-title span {
2602
+ margin-right: 8px;
2603
+ }
2604
+
2605
+ .ant-card {
2606
+ background-color: #ffffff !important;
2607
+ }
2608
+
2609
+ .ant-btn-variant-outlined {
2610
+ background-color: #ffffff !important;
2611
+ }
2612
+
2613
+ .ant-popover .ant-popover-arrow:before {
2614
+ background-color: #ffffff !important;
2615
+ }
2616
+
2617
+ .profile-popover .profile-popover-inner {
2618
+ padding: 0px !important;
2619
+ }
2620
+
2621
+ .ant-select-selector,
2622
+ .ant-input-number-outlined,
2623
+ .ant-input-outlined {
2624
+ background-color: white !important;
2625
+ }
2626
+
2627
+ .ant-table-wrapper .ant-table-thead>tr>th {
2628
+ background-color: var(--table-header-bg) !important;
2629
+ }
2630
+
2631
+ .ant-drawer .ant-drawer-content {
2632
+ background-color: #ffffff;
2633
+ }
2634
+
2635
+ .ant-dropdown .ant-dropdown-menu {
2636
+ background-color: #ffffff !important;
2637
+ }
2638
+
2639
+ .ant-dropdown .ant-dropdown-menu-item:hover {
2640
+ background-color: var(--select-color) !important;
2641
+ }
2642
+
2643
+ .setting .ant-card-body {
2644
+ padding: 16px;
2645
+ }