sccoreui 6.2.38 → 6.2.39

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