ngx-vector-components 6.14.0 → 6.15.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (34) hide show
  1. package/CHANGELOG.md +3121 -3110
  2. package/README.md +35 -35
  3. package/assets/icons/chevron_down_icon.svg +3 -3
  4. package/assets/icons/home_menu_icon.svg +3 -3
  5. package/assets/icons/logout_icon.svg +9 -9
  6. package/assets/icons/menu_footer_icon.svg +3 -3
  7. package/assets/icons/menu_hamburguer_icon.svg +3 -3
  8. package/assets/icons/terms_of_use_icon.svg +9 -9
  9. package/assets/icons/vector_admin_icon.svg +4 -4
  10. package/assets/icons/vector_fintech_icon.svg +3 -3
  11. package/assets/icons/vector_logtech_icon.svg +6 -6
  12. package/assets/icons/vector_marketplace_icon.svg +3 -3
  13. package/assets/images/bunge_logo.svg +23 -23
  14. package/assets/images/cofco_logo.svg +117 -117
  15. package/assets/images/emote_bad.svg +6 -6
  16. package/assets/images/emote_cool.svg +5 -5
  17. package/assets/images/emote_nice.svg +5 -5
  18. package/assets/images/success_sign.svg +4 -4
  19. package/assets/images/vector-logo-horizontal-inverse-color.svg +13 -13
  20. package/assets/images/vector_logo_horizontal.svg +13 -13
  21. package/assets/images/warn_sign.svg +4 -4
  22. package/assets/styles/_fonts.scss +114 -114
  23. package/assets/styles/_mixins.scss +7 -7
  24. package/assets/styles/_primeng-custom-theme.scss +1865 -1865
  25. package/assets/styles/_spinner.scss +36 -36
  26. package/assets/styles/_styles.scss +134 -134
  27. package/assets/styles/_variables.scss +62 -62
  28. package/fesm2022/ngx-vector-components.mjs +76 -70
  29. package/fesm2022/ngx-vector-components.mjs.map +1 -1
  30. package/lib/components/badge/badge.component.d.ts +1 -1
  31. package/lib/components/fields/data-table/data-table.component.d.ts +2 -2
  32. package/lib/components/fields/text-field/text-field.component.d.ts +1 -1
  33. package/lib/models/profile.model.d.ts +6 -0
  34. package/package.json +1 -1
@@ -1,1865 +1,1865 @@
1
- .ch {
2
- cursor: help;
3
- }
4
- .cp {
5
- cursor: pointer;
6
- }
7
- .p-focus,
8
- .p-element:focus {
9
- box-shadow: none !important;
10
- }
11
-
12
- .field {
13
- margin-bottom: 0rem !important;
14
- }
15
-
16
- .p-button.p-button-icon-only {
17
- padding: 0.7rem !important;
18
- min-height: 41.25px !important;
19
- }
20
-
21
- .p-button:hover:not(:disabled) .p-button-icon,
22
- .p-button.success .p-button-icon {
23
- color: #fff !important;
24
- }
25
-
26
- .p-button.p-button-link {
27
- color: var(--theme-dark);
28
- background: transparent;
29
- border: transparent;
30
- }
31
- .p-button.p-button-link:enabled:hover {
32
- background: transparent;
33
- color: var(--theme-dark);
34
- border-color: transparent;
35
- }
36
- .p-button.p-button-link:enabled:hover .p-button-label {
37
- text-decoration: none;
38
- }
39
- .p-button.p-button-link:enabled:focus {
40
- background: transparent;
41
- box-shadow: 0 0 0 0.2rem #a6d5fa;
42
- border-color: transparent;
43
- }
44
- .p-button.p-button-link:enabled:active {
45
- background: transparent;
46
- color: var(--theme-dark);
47
- border-color: transparent;
48
- }
49
-
50
- p-button {
51
- width: 100%;
52
- border-width: 2px;
53
- border-radius: var(--border-radius);
54
- background-color: var(--theme-dark);
55
- border-color: var(--theme-dark);
56
- color: #ffffff;
57
- box-shadow: 0px 5px 5px rgba(0, 70, 232, 0.5);
58
-
59
- button {
60
- width: 100% !important;
61
- }
62
-
63
- &.round {
64
- button {
65
- border-radius: 8px;
66
- }
67
- }
68
-
69
- &:hover:not(:disabled) {
70
- background-color: #003049;
71
- border-color: #003049;
72
- }
73
-
74
- &:focus {
75
- box-shadow: none;
76
- }
77
-
78
- &:disabled {
79
- cursor: not-allowed;
80
- }
81
- .no-shadow {
82
- box-shadow: none;
83
- }
84
-
85
- .p-button {
86
- border-width: 2px !important;
87
- }
88
-
89
- .default {
90
- background-color: #ffffff;
91
- border-color: var(--theme-dark);
92
-
93
- .p-button-label {
94
- color: var(--theme-dark);
95
- }
96
-
97
- .p-button-icon {
98
- color: var(--theme-dark);
99
- }
100
-
101
- &:hover:not(:disabled) {
102
- background-color: var(--theme-dark);
103
- border-color: var(--theme-dark);
104
- .p-button-label {
105
- color: #ffffff;
106
- }
107
- }
108
- }
109
-
110
- .default-filled {
111
- background-color: var(--theme-primary);
112
- border-color: var(--theme-primary);
113
- .p-button-label {
114
- color: #ffffff;
115
- }
116
- .p-button-icon {
117
- color: #ffffff;
118
- }
119
-
120
- &:hover:not(:disabled) {
121
- background-color: var(--theme-dark);
122
- border-color: var(--theme-dark);
123
- }
124
- }
125
-
126
- .cancel {
127
- background-color: #ffffff;
128
- border-color: var(--error-color);
129
- .p-button-label {
130
- color: var(--error-color);
131
- }
132
- .p-button-icon {
133
- color: var(--error-color);
134
- }
135
-
136
- &:hover:not(:disabled) {
137
- background-color: var(--error-color-dark);
138
- border-color: var(--error-color-dark);
139
- .p-button-label {
140
- color: #ffffff;
141
- }
142
- }
143
- }
144
-
145
- .cancel-filled {
146
- background-color: var(--error-color);
147
- border-color: var(--error-color);
148
- .p-button-label {
149
- color: #ffffff;
150
- }
151
-
152
- .p-button-icon {
153
- color: #ffffff;
154
- }
155
-
156
- &:hover:not(:disabled) {
157
- background-color: var(--error-color-dark);
158
- border-color: var(--error-color-dark);
159
- }
160
- }
161
-
162
- .success {
163
- background-color: var(--success-color);
164
- border-color: var(--success-color);
165
- .p-button-label {
166
- color: #fff;
167
- }
168
- .p-button-icon {
169
- color: #fff;
170
- }
171
-
172
- &:hover:not(:disabled) {
173
- background-color: var(--success-color-dark);
174
- border-color: var(--success-color-dark);
175
- }
176
- }
177
-
178
- .light-outline {
179
- background-color: var(--background);
180
- border-color: var(--gray-medium);
181
- .p-button-label {
182
- color: var(--success-color);
183
- }
184
- .p-button-icon {
185
- color: var(--success-color);
186
- }
187
-
188
- &:hover:not(:disabled) {
189
- background-color: var(--success-color-dark);
190
- border-color: var(--success-color-dark);
191
- .p-button-label {
192
- color: #fff;
193
- }
194
- }
195
- }
196
-
197
- .success-outlined {
198
- background-color: #ffffff;
199
- border-color: var(--success-color);
200
-
201
- .p-button-label {
202
- color: var(--success-color);
203
- }
204
- .p-button-icon {
205
- color: var(--success-color);
206
- }
207
-
208
- &:hover:not(:disabled) {
209
- background-color: var(--success-color-dark);
210
- border-color: var(--success-color-dark);
211
-
212
- .p-button-label {
213
- color: #fff;
214
- }
215
- }
216
- }
217
-
218
- .default-outlined {
219
- background-color: #ffffff;
220
- border-color: var(--theme-light);
221
-
222
- .p-button-label {
223
- color: var(--theme-light);
224
- }
225
- .p-button-icon {
226
- color: var(--theme-light);
227
- }
228
-
229
- &:hover:not(:disabled) {
230
- background-color: var(--theme-primary);
231
- border-color: var(--theme-primary);
232
-
233
- .p-button-label {
234
- color: #fff;
235
- }
236
- }
237
- }
238
- .default-outlined-gray {
239
- background-color: #ffffff;
240
- border-color: var(--gray-medium);
241
-
242
- .p-button-label {
243
- color: var(--theme-light);
244
- }
245
- .p-button-icon {
246
- color: var(--theme-light);
247
- }
248
-
249
- &:hover:not(:disabled) {
250
- background-color: var(--theme-primary);
251
- border-color: var(--theme-primary);
252
-
253
- .p-button-label {
254
- color: #fff;
255
- }
256
- }
257
- }
258
- .default-outlined-gray-icon-red {
259
- background-color: #ffffff;
260
- border-color: var(--gray-medium);
261
-
262
- .p-button-label {
263
- color: var(--theme-light);
264
- }
265
- .p-button-icon {
266
- color: var(--cancel-color);
267
- }
268
-
269
- &:hover:not(:disabled) {
270
- background-color: var(--cancel-color);
271
- border-color: var(--cancel-color);
272
-
273
- .p-button-label {
274
- color: #fff;
275
- }
276
- }
277
- }
278
- .default-outlined-gray-icon-gray {
279
- background-color: #ffffff;
280
- border-color: var(--gray-medium);
281
-
282
- .p-button-label {
283
- color: var(--form-labels-color);
284
- }
285
- .p-button-icon {
286
- color: var(--form-labels-color);
287
- }
288
-
289
- &:hover:not(:disabled) {
290
- background-color: var(--gray-medium);
291
- border-color: var(--gray-medium);
292
-
293
- .p-button-label {
294
- color: var(--form-labels-color);
295
- }
296
- .p-button-icon {
297
- color: var(--form-labels-color);
298
- }
299
- }
300
- }
301
- }
302
-
303
- .p-inputgroup {
304
- display: flex;
305
- align-items: stretch;
306
- width: 100%;
307
-
308
- > input,
309
- > p-inputmask {
310
- flex: 1 1 auto;
311
- width: 1%;
312
- }
313
-
314
- vector-button {
315
- flex: 0 0 auto;
316
-
317
- p-button,
318
- button {
319
- width: auto !important;
320
- }
321
- }
322
- }
323
-
324
- .p-input-icon-left,
325
- .p-input-icon-right {
326
- position: relative;
327
- }
328
-
329
- .p-input-icon-left > i,
330
- .p-input-icon-left > svg {
331
- position: absolute;
332
- top: 50%;
333
- left: 0.75rem;
334
- margin-top: -0.5rem;
335
- z-index: 1;
336
- }
337
-
338
- .p-input-icon-right > i,
339
- .p-input-icon-right > svg {
340
- position: absolute;
341
- top: 50%;
342
- right: 0.75rem;
343
- margin-top: -0.5rem;
344
- z-index: 1;
345
- }
346
-
347
- .p-autocomplete-input {
348
- border-right: none !important;
349
- border-top-right-radius: 0px !important;
350
- border-bottom-right-radius: 0px !important;
351
- padding: 6px 0px 6px 12px !important;
352
-
353
- &:focus + .p-autocomplete-dropdown {
354
- background-color: #ffffff !important;
355
- border-right: 2px solid var(--theme-dark) !important;
356
- border-top: 2px solid var(--theme-dark) !important;
357
- border-bottom: 2px solid var(--theme-dark) !important;
358
- }
359
- }
360
-
361
- .p-inputwrapper-focus .p-autocomplete-dropdown {
362
- background-color: #ffffff !important;
363
- border-right: 2px solid var(--theme-dark) !important;
364
- border-top: 2px solid var(--theme-dark) !important;
365
- border-bottom: 2px solid var(--theme-dark) !important;
366
- }
367
-
368
- .p-autocomplete-dropdown {
369
- background-color: var(--gray-light) !important;
370
- border: none !important;
371
- margin-left: -1px !important;
372
- border-top-right-radius: var(--border-radius) !important;
373
- border-bottom-right-radius: var(--border-radius) !important;
374
- color: var(--gray-dark) !important;
375
- padding-bottom: 5px !important;
376
- }
377
-
378
- .p-select,
379
- .p-multiselect {
380
- height: 40px;
381
- background-color: var(--gray-medium) !important;
382
-
383
- .p-select-label,
384
- .p-multiselect-label {
385
- font-family: 'Poppins';
386
- color: var(--theme-dark) !important;
387
- font-weight: 500;
388
- display: flex;
389
- align-items: center;
390
- }
391
- }
392
-
393
- .p-paginator .p-select {
394
- width: auto !important;
395
- height: auto !important;
396
- background-color: transparent !important;
397
- border: 1px solid var(--gray-medium) !important;
398
- border-radius: 8px !important;
399
-
400
- .p-select-label {
401
- padding: 8px 12px !important;
402
- color: var(--theme-dark) !important;
403
- font-weight: 600;
404
- }
405
-
406
- .p-select-dropdown {
407
- color: var(--theme-dark) !important;
408
- }
409
- }
410
-
411
- .p-paginator .p-paginator-first,
412
- .p-paginator .p-paginator-prev,
413
- .p-paginator .p-paginator-next,
414
- .p-paginator .p-paginator-last {
415
- color: var(--theme-dark) !important;
416
- }
417
-
418
- p-inputnumber:not(.currency-input).ng-touched.ng-invalid input.p-inputnumber-input {
419
- border-color: var(--error-color) !important;
420
- background-color: var(--error-color-transparent) !important;
421
- }
422
-
423
- p-inputnumber.currency-input:not(.outlined) {
424
- &.ng-touched.ng-invalid input.p-inputnumber-input {
425
- color: var(--error-color) !important;
426
- }
427
-
428
- &.rounded input.p-inputnumber-input {
429
- font-size: 1rem !important;
430
- }
431
-
432
- input.p-inputnumber-input {
433
- font-size: 2em !important;
434
- border: none !important;
435
- font-weight: 600 !important;
436
- background-color: #ffffff !important;
437
- color: var(--theme-dark) !important;
438
- width: 100% !important;
439
- padding: 0px !important;
440
- height: 2em !important;
441
-
442
- &:focus {
443
- outline: 0 !important;
444
- box-shadow: none !important;
445
- }
446
- }
447
- }
448
-
449
- .p-inputnumber-buttons-horizontal,
450
- .p-inputnumber.p-inputnumber-horizontal {
451
- display: flex !important;
452
- flex-direction: row !important;
453
- align-items: stretch !important;
454
- width: 100% !important;
455
-
456
- p-button,
457
- .p-inputnumber-button-group {
458
- width: auto !important;
459
- background: transparent !important;
460
- border: none !important;
461
- box-shadow: none !important;
462
- display: inline-flex !important;
463
- align-items: stretch !important;
464
- }
465
-
466
- .p-inputnumber-input {
467
- flex: 1 1 auto !important;
468
- min-width: 0 !important;
469
- text-align: center !important;
470
- border-radius: 0 !important;
471
- }
472
-
473
- .p-inputnumber-button,
474
- button.p-inputnumber-increment-button,
475
- button.p-inputnumber-decrement-button,
476
- .p-button {
477
- width: 36px !important;
478
- min-width: 36px !important;
479
- flex: 0 0 36px !important;
480
- padding: 0 !important;
481
- color: var(--theme-primary) !important;
482
- border: none !important;
483
- border-radius: 0 !important;
484
- background: var(--gray-light) !important;
485
- box-shadow: none !important;
486
- display: inline-flex !important;
487
- align-items: center !important;
488
- justify-content: center !important;
489
-
490
- &:hover:not(:disabled) {
491
- background: var(--gray-medium) !important;
492
- color: var(--theme-dark) !important;
493
- }
494
-
495
- &:focus,
496
- &:focus-visible {
497
- outline: none !important;
498
- box-shadow: none !important;
499
- }
500
-
501
- span,
502
- .p-button-icon,
503
- svg {
504
- color: inherit !important;
505
- font-weight: 600 !important;
506
- border-radius: 0 !important;
507
- }
508
- }
509
-
510
- .p-inputnumber-decrement-button,
511
- .p-inputnumber-button:first-of-type {
512
- border-top-left-radius: 0 !important;
513
- border-bottom-left-radius: 0 !important;
514
- border-top-right-radius: 0 !important;
515
- border-bottom-right-radius: 0 !important;
516
- }
517
-
518
- .p-inputnumber-increment-button,
519
- .p-inputnumber-button:last-of-type {
520
- border-top-right-radius: 0 !important;
521
- border-bottom-right-radius: 0 !important;
522
- border-top-left-radius: 0 !important;
523
- border-bottom-left-radius: 0 !important;
524
- }
525
- }
526
-
527
- .p-multiselect {
528
- padding: 6px 0px 6px 12px !important;
529
-
530
- .p-multiselect-label {
531
- padding: 0.3rem 0.5rem 0 0 !important;
532
- }
533
-
534
- .p-multiselect-trigger {
535
- width: 12px !important;
536
- &:hover {
537
- color: #fff !important;
538
- }
539
- }
540
-
541
- // PrimeNG 19: display="chip" renderiza <p-chip styleClass="p-multiselect-chip"> dentro do .p-multiselect-label
542
- // Deixar inline, compacto, igual QA (PrimeNG 17 era assim por padrão)
543
- &.p-multiselect-display-chip {
544
- .p-multiselect-label {
545
- display: inline-flex !important;
546
- flex-wrap: wrap !important;
547
- align-items: center !important;
548
- gap: 4px !important;
549
- padding: 0.15rem 0.5rem 0.15rem 0 !important;
550
- min-height: 28px !important;
551
- }
552
-
553
- .p-multiselect-chip-item {
554
- display: inline-flex !important;
555
- align-items: center !important;
556
- }
557
-
558
- .p-multiselect-chip,
559
- .p-chip {
560
- height: 24px !important;
561
- padding: 0 6px 0 10px !important;
562
- background: #ffffff !important;
563
- border: 1px solid #e5e7eb !important;
564
- border-radius: 16px !important;
565
- font-size: 12px !important;
566
- font-weight: 500 !important;
567
- line-height: 1 !important;
568
- color: var(--theme-dark) !important;
569
- gap: 4px !important;
570
- display: inline-flex !important;
571
- align-items: center !important;
572
- box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04) !important;
573
-
574
- .p-chip-label,
575
- .p-multiselect-chip-label {
576
- max-width: 140px !important;
577
- overflow: hidden !important;
578
- text-overflow: ellipsis !important;
579
- white-space: nowrap !important;
580
- color: inherit !important;
581
- }
582
-
583
- .p-chip-remove-icon,
584
- .p-multiselect-chip-icon,
585
- svg {
586
- width: 14px !important;
587
- height: 14px !important;
588
- color: var(--theme-dark) !important;
589
- opacity: 0.6 !important;
590
- cursor: pointer !important;
591
-
592
- &:hover {
593
- opacity: 1 !important;
594
- }
595
- }
596
- }
597
- }
598
- }
599
-
600
- input.p-inputtext:not(.currency-input),
601
- .p-inputtextarea,
602
- .p-textarea,
603
- .p-multiselect {
604
- &:not(:focus) {
605
- border: none !important;
606
- background-color: var(--gray-light) !important;
607
- }
608
- width: 100%;
609
- padding: 6px 12px 6px 12px !important;
610
- border-top-right-radius: var(--border-radius);
611
- border-bottom-right-radius: var(--border-radius);
612
- border-top-left-radius: var(--border-radius);
613
- border-bottom-left-radius: var(--border-radius);
614
- height: 40px;
615
- font-size: 0.9em !important;
616
- color: var(--theme-dark) !important;
617
- font-weight: 500;
618
-
619
- &:disabled {
620
- cursor: not-allowed;
621
- opacity: 0.6;
622
- }
623
-
624
- &:focus {
625
- outline: 0 !important;
626
- box-shadow: none !important;
627
- border: 2px solid var(--theme-dark);
628
- background-color: #ffffff;
629
- }
630
-
631
- &:hover,
632
- &:focus:not(.ng-invalid):not(.p-inputmask) {
633
- border-color: var(--theme-dark) !important;
634
- }
635
-
636
- &::placeholder {
637
- color: var(--theme-dark);
638
- opacity: 0.8;
639
- }
640
-
641
- &.ng-touched.ng-invalid {
642
- border-color: var(--error-color) !important;
643
- background-color: var(--error-color-transparent) !important;
644
- }
645
-
646
- &:not(.ng-invalid) {
647
- border-color: var(--theme-dark) !important;
648
- }
649
- }
650
-
651
- .p-inputtextarea,
652
- .p-textarea {
653
- padding-right: 62px !important;
654
- resize: none;
655
- height: unset !important;
656
- }
657
-
658
- .p-datepicker {
659
- width: 100% !important;
660
- .p-inputtext {
661
- color: var(--theme-dark) !important;
662
- font-weight: 600 !important;
663
- margin-left: -1px !important;
664
- border-top-right-radius: 0px !important;
665
- border-bottom-right-radius: 0px !important;
666
-
667
- &:focus {
668
- border-right: none !important;
669
-
670
- + .p-datepicker-dropdown {
671
- border-right: 2px solid var(--theme-dark) !important;
672
- border-top: 2px solid var(--theme-dark) !important;
673
- border-bottom: 2px solid var(--theme-dark) !important;
674
- background-color: #ffffff !important;
675
- }
676
- }
677
- }
678
-
679
- .p-datepicker-dropdown {
680
- background-color: var(--gray-light) !important;
681
- border: none !important;
682
- border-top-right-radius: var(--border-radius) !important;
683
- border-bottom-right-radius: var(--border-radius) !important;
684
-
685
- span {
686
- color: var(--theme-dark) !important;
687
- }
688
- }
689
- }
690
- p-datepicker.ng-touched.ng-invalid {
691
- .p-datepicker {
692
- width: 100% !important;
693
- input.p-inputtext:not(.currency-input),
694
- .p-inputtextarea {
695
- &:not(:focus) {
696
- border: none !important;
697
- background-color: var(--error-color-transparent) !important;
698
- }
699
- }
700
- }
701
-
702
- .p-datepicker-dropdown {
703
- border-color: var(--error-color) !important;
704
- background-color: var(--error-color-transparent) !important;
705
- }
706
-
707
- .p-focus {
708
- input.p-inputtext:not(.currency-input),
709
- .p-inputtextarea {
710
- border-color: var(--error-color) !important;
711
- background-color: var(--error-color-transparent) !important;
712
- }
713
- .p-datepicker-dropdown {
714
- border-right: 2px solid var(--error-color) !important;
715
- border-top: 2px solid var(--error-color) !important;
716
- border-bottom: 2px solid var(--error-color) !important;
717
- background-color: var(--error-color-transparent) !important;
718
- }
719
- }
720
- }
721
-
722
- p-inputmask {
723
- flex: 1;
724
- }
725
- p-inputmask.ng-touched.ng-invalid input {
726
- border-color: var(--error-color) !important;
727
- background-color: var(--error-color-transparent) !important;
728
- }
729
-
730
- p-inputnumber:not(.currency-input),
731
- p-inputnumber.outlined {
732
- display: block !important;
733
-
734
- span {
735
- width: 100%;
736
- }
737
- }
738
-
739
- p-inputnumber .text-centered input {
740
- text-align: center;
741
- }
742
-
743
- p-radiobutton.ng-touched.ng-invalid .p-radiobutton-box {
744
- border-color: var(--error-color) !important;
745
- }
746
-
747
- .p-radiobutton {
748
- width: 24px;
749
- height: 24px;
750
-
751
- .p-radiobutton-box {
752
- border: 2px solid #d1d5db !important;
753
- background: #ffffff !important;
754
- box-shadow: none !important;
755
- }
756
-
757
- &:not(.p-disabled):hover .p-radiobutton-box {
758
- border-color: #1545de !important;
759
- }
760
-
761
- &.p-radiobutton-checked .p-radiobutton-box {
762
- border-color: #1545de !important;
763
- background: #1545de !important;
764
-
765
- .p-radiobutton-icon {
766
- background: #ffffff !important;
767
- }
768
- }
769
-
770
- .p-radiobutton-input:focus-visible + .p-radiobutton-box,
771
- &.p-focus .p-radiobutton-box {
772
- border-color: #1545de !important;
773
- box-shadow: 0 0 0 3px #ced9fa !important;
774
- }
775
- }
776
-
777
- .p-steps .p-steps-item.p-steps-item-active {
778
- background-color: transparent !important;
779
-
780
- .p-steps-item-link .p-steps-item-number {
781
- color: #fff !important;
782
- background-color: var(--theme-medium) !important;
783
- border-color: var(--theme-medium) !important;
784
- }
785
- }
786
-
787
- .p-menu-list {
788
- padding: 0px !important;
789
- }
790
-
791
- .p-menu-item-link {
792
- padding: 0.75rem 1rem !important;
793
- }
794
-
795
- .p-steps .p-steps-item:not(.p-steps-item-active) {
796
- .p-steps-item-label {
797
- opacity: 0.4 !important;
798
- }
799
-
800
- .p-steps-item-link .p-steps-item-number {
801
- color: var(--theme-medium) !important;
802
- }
803
- }
804
-
805
- .p-steps .p-steps-item .p-steps-item-label {
806
- color: var(--theme-medium) !important;
807
- }
808
-
809
- .p-steps .p-steps-item.p-disabled {
810
- opacity: 1 !important;
811
- }
812
-
813
- .p-steps .p-steps-item .p-steps-item-link {
814
- background: transparent !important;
815
- padding: 0.75rem 1rem !important;
816
-
817
- .p-steps-item-number {
818
- min-width: 2.6rem !important;
819
- height: 2.6rem !important;
820
- line-height: 2.6rem !important;
821
- font-size: 1rem !important;
822
- border: 2px solid var(--theme-medium) !important;
823
- }
824
- }
825
-
826
- .p-steps ul > li:nth-child(1):only-child::before {
827
- content: unset !important;
828
- }
829
-
830
- .p-steps ul > li:not(:only-child)::before {
831
- border-top: 1px dashed var(--theme-medium) !important;
832
- }
833
-
834
- .p-steps .p-steps-item:first-child:before {
835
- width: 50% !important;
836
- left: 50% !important;
837
- transform: none !important;
838
- }
839
-
840
- .p-steps .p-steps-item:last-child:before {
841
- width: 50% !important;
842
- }
843
-
844
- .p-steps .p-steps-item.checked .p-steps-item-label {
845
- color: var(--success-color-dark) !important;
846
- }
847
-
848
- .p-steps .p-steps-item.checked .p-steps-item-link .p-steps-item-number {
849
- background-color: var(--success-color-dark) !important;
850
- color: #fff !important;
851
- border: 2px solid var(--success-color-dark) !important;
852
- }
853
-
854
- .p-steps .p-steps-item .p-steps-item-link .p-steps-item-number.disabled {
855
- color: var(--gray-dark) !important;
856
- border: 2px solid var(--gray-dark) !important;
857
- }
858
-
859
- .p-highlight {
860
- background-color: var(--theme-primary) !important;
861
- border-color: var(--theme-primary) !important;
862
- }
863
-
864
- .p-button:focus {
865
- box-shadow: unset !important;
866
- }
867
-
868
- .p-button.button {
869
- display: flex !important;
870
- flex-direction: row !important;
871
- justify-content: center !important;
872
-
873
- .p-button-label {
874
- flex: unset !important;
875
- }
876
- }
877
-
878
- .p-datepicker-panel {
879
- border: 2px solid var(--theme-dark) !important;
880
- border-radius: var(--border-radius) !important;
881
- z-index: 15000 !important;
882
-
883
- .p-datepicker-weekday {
884
- color: var(--theme-dark) !important;
885
- }
886
-
887
- .p-datepicker-day {
888
- color: var(--font-color) !important;
889
-
890
- &:focus {
891
- box-shadow: unset !important;
892
- }
893
- }
894
-
895
- .p-datepicker-day-selected {
896
- color: #ffffff !important;
897
- }
898
-
899
- p-button {
900
- width: auto !important;
901
- background: transparent !important;
902
- box-shadow: none !important;
903
-
904
- button {
905
- width: auto !important;
906
- min-width: 2rem !important;
907
- background: transparent !important;
908
- border: none !important;
909
- box-shadow: none !important;
910
- color: var(--theme-dark) !important;
911
-
912
- &:hover:not(:disabled) {
913
- background: var(--gray-light) !important;
914
- border: none !important;
915
- }
916
- }
917
-
918
- .p-button-icon {
919
- color: var(--theme-dark) !important;
920
- }
921
- }
922
- }
923
-
924
- .p-toast {
925
- .p-toast-message {
926
- border-radius: 12px !important;
927
- box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
928
- border: none !important;
929
- padding: 16px !important;
930
- color: #1f2937 !important;
931
- }
932
-
933
- .p-toast-message-content {
934
- gap: 12px !important;
935
- align-items: center !important;
936
- padding: 0 !important;
937
- }
938
-
939
- .p-toast-message-text {
940
- gap: 4px !important;
941
- }
942
-
943
- .p-toast-summary {
944
- color: #111827 !important;
945
- font-family: 'Poppins', 'Inter', sans-serif !important;
946
- font-weight: 600 !important;
947
- font-size: 14px !important;
948
- }
949
-
950
- .p-toast-detail {
951
- color: #4b5563 !important;
952
- font-family: 'Poppins', 'Inter', sans-serif !important;
953
- font-weight: 400 !important;
954
- font-size: 12px !important;
955
- }
956
-
957
- .p-toast-message-icon {
958
- width: 40px !important;
959
- height: 40px !important;
960
- min-width: 40px !important;
961
- border-radius: 50% !important;
962
- display: inline-flex !important;
963
- align-items: center !important;
964
- justify-content: center !important;
965
- color: #ffffff !important;
966
-
967
- svg,
968
- .p-icon {
969
- width: 22px !important;
970
- height: 22px !important;
971
- color: #ffffff !important;
972
- fill: #ffffff !important;
973
- }
974
- }
975
-
976
- .p-toast-message-warn {
977
- background: #fde6c0 !important;
978
- .p-toast-message-icon {
979
- background: #f59e0b !important;
980
- }
981
- }
982
-
983
- .p-toast-message-error {
984
- background: #fee2e2 !important;
985
- .p-toast-message-icon {
986
- background: #ef4444 !important;
987
- }
988
- }
989
-
990
- .p-toast-message-success {
991
- background: #dcfce7 !important;
992
- .p-toast-message-icon {
993
- background: #22c55e !important;
994
- }
995
- }
996
-
997
- p-button,
998
- .p-toast-close-button {
999
- width: auto !important;
1000
- background: transparent !important;
1001
- border: none !important;
1002
- box-shadow: none !important;
1003
- align-self: center !important;
1004
-
1005
- button {
1006
- width: 2rem !important;
1007
- min-width: 2rem !important;
1008
- height: 2rem !important;
1009
- padding: 0 !important;
1010
- background: transparent !important;
1011
- border: none !important;
1012
- box-shadow: none !important;
1013
- color: #6b7280 !important;
1014
- border-radius: 50% !important;
1015
-
1016
- &:hover:not(:disabled) {
1017
- background: rgba(0, 0, 0, 0.06) !important;
1018
- border: none !important;
1019
- color: #1f2937 !important;
1020
- }
1021
- }
1022
-
1023
- .p-button-icon,
1024
- .p-toast-close-icon {
1025
- color: inherit !important;
1026
- width: 1rem !important;
1027
- height: 1rem !important;
1028
- }
1029
- }
1030
- }
1031
-
1032
- .p-overlaypanel:not(.background-white) {
1033
- background-color: #01529b !important;
1034
- }
1035
-
1036
- .p-overlaypanel-content {
1037
- padding: 6px 8px 6px 8px !important;
1038
- }
1039
-
1040
- .p-overlaypanel::after,
1041
- .p-overlaypanel::before {
1042
- border-bottom-color: #01529b !important;
1043
- }
1044
-
1045
- .p-dialog:not(.p-confirm-dialog) {
1046
- .p-dialog-header {
1047
- padding: 3px !important;
1048
- border-top-left-radius: 9px !important;
1049
- border-top-right-radius: 9px !important;
1050
- }
1051
-
1052
- .p-dialog-content {
1053
- border-bottom-left-radius: 9px !important;
1054
- border-bottom-right-radius: 9px !important;
1055
- }
1056
- }
1057
-
1058
- .p-dialog .p-dialog-header .p-dialog-title {
1059
- font-size: 1em !important;
1060
- text-align: center !important;
1061
- }
1062
-
1063
- .p-dialog-header-close-icon {
1064
- font-weight: 600 !important;
1065
- }
1066
-
1067
- .p-dialog .p-dialog-header p-button,
1068
- .p-drawer .p-drawer-header p-button {
1069
- width: auto !important;
1070
- background: transparent !important;
1071
- box-shadow: none !important;
1072
-
1073
- button {
1074
- width: 2rem !important;
1075
- height: 2rem !important;
1076
- min-width: 2rem !important;
1077
- padding: 0 !important;
1078
- border-radius: 50% !important;
1079
- background: transparent !important;
1080
- border: none !important;
1081
- box-shadow: none !important;
1082
- color: var(--gray-dark) !important;
1083
- transition:
1084
- background-color 0.15s ease,
1085
- color 0.15s ease;
1086
- }
1087
-
1088
- &:hover button:not(:disabled) {
1089
- background: var(--gray-light) !important;
1090
- color: var(--theme-dark) !important;
1091
- }
1092
-
1093
- .p-dialog-header-close-icon,
1094
- .p-button-icon {
1095
- font-size: 1rem !important;
1096
- }
1097
- }
1098
-
1099
- .p-confirm-dialog {
1100
- .p-dialog-footer .actions {
1101
- display: flex;
1102
- align-items: center;
1103
- justify-content: flex-end;
1104
- gap: 20px;
1105
- }
1106
-
1107
- .p-confirm-dialog-icon {
1108
- display: none !important;
1109
- }
1110
-
1111
- .p-confirm-dialog-message {
1112
- margin-left: 0px !important;
1113
- }
1114
- }
1115
-
1116
- .p-selectbutton {
1117
- display: inline-flex !important;
1118
- align-items: center !important;
1119
- gap: 4px !important;
1120
- padding: 4px !important;
1121
- height: 42px !important;
1122
- background-color: var(--gray-light) !important;
1123
- border-radius: 12px !important;
1124
- width: fit-content !important;
1125
-
1126
- .p-togglebutton {
1127
- display: inline-flex !important;
1128
- align-items: center !important;
1129
- height: 34px !important;
1130
- margin: 0 !important;
1131
- padding: 0 16px !important;
1132
- border: none !important;
1133
- border-radius: 8px !important;
1134
- background: transparent !important;
1135
- transition: all 0.2s ease;
1136
-
1137
- .p-togglebutton-content {
1138
- gap: 6px !important;
1139
- font-size: 14px !important;
1140
- font-weight: 500 !important;
1141
- line-height: 1 !important;
1142
- }
1143
-
1144
- .p-togglebutton-label,
1145
- .p-togglebutton-icon {
1146
- color: var(--theme-dark) !important;
1147
- }
1148
-
1149
- &:not(.p-togglebutton-checked) {
1150
- background-color: transparent !important;
1151
- }
1152
-
1153
- &.p-togglebutton-checked {
1154
- background-color: #ffffff !important;
1155
- box-shadow:
1156
- 0 1px 2px 0 rgba(17, 55, 178, 0.1),
1157
- 0 2px 4px 0 rgba(17, 55, 178, 0.1),
1158
- 0 4px 8px 0 rgba(17, 55, 178, 0.1) !important;
1159
-
1160
- .p-togglebutton-label,
1161
- .p-togglebutton-icon {
1162
- color: var(--brand-blue) !important;
1163
- font-weight: 600 !important;
1164
- }
1165
- }
1166
-
1167
- &:disabled,
1168
- &.p-disabled {
1169
- background-color: transparent !important;
1170
- box-shadow: none !important;
1171
-
1172
- .p-togglebutton-label,
1173
- .p-togglebutton-icon {
1174
- color: var(--gray-dark) !important;
1175
- }
1176
- }
1177
- }
1178
- }
1179
-
1180
- vector-select-button-field.is-secondary {
1181
- .p-selectbutton {
1182
- background-color: var(--brand-light) !important;
1183
- border-radius: 9999px !important;
1184
- }
1185
-
1186
- .p-togglebutton {
1187
- padding: 0 20px !important;
1188
- border-radius: 9999px !important;
1189
- }
1190
- }
1191
-
1192
- .p-multiselect-overlay:not(.has-filter) .p-multiselect-header p-checkbox::after {
1193
- content: 'Selecionar Todos';
1194
- display: inline-block;
1195
- margin-left: 0.5rem;
1196
- color: var(--theme-dark);
1197
- font-weight: 500;
1198
- white-space: nowrap;
1199
- }
1200
-
1201
- .p-multiselect-header {
1202
- .p-checkbox {
1203
- width: max-content;
1204
- }
1205
- }
1206
-
1207
- p-checkbox.rounded-checkbox,
1208
- .rounded-checkbox {
1209
- --p-checkbox-border-radius: 50%;
1210
- --p-checkbox-checked-border-radius: 50%;
1211
- }
1212
-
1213
- .rounded-checkbox .p-checkbox,
1214
- .rounded-checkbox .p-checkbox.p-checkbox-checked {
1215
- background: transparent !important;
1216
- border-radius: 50% !important;
1217
- }
1218
-
1219
- .rounded-checkbox .p-checkbox-input {
1220
- background: transparent !important;
1221
- border-radius: 50% !important;
1222
- }
1223
-
1224
- .rounded-checkbox .p-checkbox-box,
1225
- .rounded-checkbox .p-checkbox.p-checkbox-checked .p-checkbox-box {
1226
- border-radius: 50% !important;
1227
- border: none !important;
1228
- overflow: hidden !important;
1229
- }
1230
-
1231
- .rounded-checkbox .p-checkbox:not(.p-checkbox-checked) .p-checkbox-box {
1232
- background-color: var(--gray-light) !important;
1233
- }
1234
-
1235
- .rounded-checkbox .p-checkbox.p-checkbox-checked .p-checkbox-box {
1236
- background-color: var(--brand-blue) !important;
1237
- }
1238
-
1239
- p-checkbox.rounded-checkbox .p-checkbox-icon,
1240
- .rounded-checkbox .p-checkbox-icon {
1241
- font-size: 0.8em !important;
1242
- padding-top: 2px !important;
1243
- }
1244
-
1245
- .p-checkbox-box.p-highlight,
1246
- .p-checkbox.p-checkbox-checked .p-checkbox-box {
1247
- background: var(--brand-blue) !important;
1248
- border-color: var(--brand-blue) !important;
1249
- }
1250
-
1251
- .p-checkbox-box {
1252
- border-width: 2px !important;
1253
- border-color: var(--gray-dark) !important;
1254
-
1255
- &:hover:not(.p-highlight) {
1256
- border-color: var(--gray-dark) !important;
1257
- }
1258
- }
1259
-
1260
- .p-select,
1261
- .p-autocomplete {
1262
- width: 100%;
1263
- }
1264
- p-autocomplete.ng-touched.ng-invalid {
1265
- input.p-inputtext:not(.currency-input),
1266
- .p-inputtextarea {
1267
- &:not(:focus) {
1268
- border: none !important;
1269
- background-color: var(--error-color-transparent) !important;
1270
- }
1271
-
1272
- &:focus:not(.ng-invalid):not(.p-inputmask) {
1273
- border-color: var(--error-color) !important;
1274
- }
1275
- }
1276
- }
1277
-
1278
- p-autocomplete.ng-touched.ng-invalid .p-autocomplete-dropdown,
1279
- p-multiselect.ng-touched.ng-invalid .p-multiselect {
1280
- border-color: var(--error-color) !important;
1281
- background-color: var(--error-color-transparent) !important;
1282
- }
1283
-
1284
- .p-select-overlay,
1285
- .p-autocomplete-panel,
1286
- .p-multiselect-overlay {
1287
- // max-width: 250px !important;
1288
- min-width: 100%;
1289
- border: 1px solid var(--theme-dark) !important;
1290
- margin-top: -2px !important;
1291
- border-radius: var(--border-radius) !important;
1292
-
1293
- & .p-autocomplete-items,
1294
- & .p-multiselect-list {
1295
- padding-top: 0px !important;
1296
- padding-bottom: 0px !important;
1297
- padding-right: 1px !important;
1298
- }
1299
-
1300
- &::-webkit-scrollbar {
1301
- width: 5px;
1302
- }
1303
-
1304
- &::-webkit-scrollbar-track {
1305
- background: var(--gray-light);
1306
- }
1307
-
1308
- &::-webkit-scrollbar-thumb {
1309
- background: var(--theme-dark);
1310
- border-radius: 8px;
1311
- }
1312
-
1313
- &::-webkit-scrollbar-thumb:hover {
1314
- background: var(--theme-dark);
1315
- }
1316
- }
1317
-
1318
- .p-select-option,
1319
- .p-autocomplete-item,
1320
- .p-multiselect-item {
1321
- text-overflow: ellipsis;
1322
- color: var(--theme-dark) !important;
1323
-
1324
- &:hover {
1325
- background-color: var(--theme-dark) !important;
1326
- color: #ffffff !important;
1327
- }
1328
- }
1329
-
1330
- .p-select,
1331
- .p-multiselect {
1332
- border: none !important;
1333
- .p-highlight {
1334
- background-color: #ffffff !important;
1335
- }
1336
- }
1337
- .p-select-overlay .p-select-list .p-select-option.p-highlight,
1338
- .p-multiselect-overlay .p-multiselect-list .p-multiselect-item.p-highlight {
1339
- background-color: var(--theme-dark) !important;
1340
- color: #ffffff !important;
1341
- }
1342
-
1343
- .p-slider {
1344
- background-color: #01529b;
1345
- .p-slider-range {
1346
- background-color: var(--success-color) !important;
1347
- border-radius: inherit !important;
1348
- }
1349
- .p-slider-handle {
1350
- border-color: var(--success-color) !important;
1351
-
1352
- &:hover {
1353
- background-color: var(--success-color) !important;
1354
- }
1355
- &:focus {
1356
- box-shadow: unset !important;
1357
- }
1358
- }
1359
- }
1360
-
1361
- .p-fileupload {
1362
- p-messages,
1363
- p-message {
1364
- display: none !important;
1365
- }
1366
-
1367
- .p-fileupload-filelabel,
1368
- [class*='filelabel'] {
1369
- display: none !important;
1370
- }
1371
-
1372
- input[type='file'] {
1373
- position: absolute !important;
1374
- width: 1px !important;
1375
- height: 1px !important;
1376
- padding: 0 !important;
1377
- margin: 0 !important;
1378
- overflow: hidden !important;
1379
- clip: rect(0, 0, 0, 0) !important;
1380
- white-space: nowrap !important;
1381
- border: 0 !important;
1382
- opacity: 0 !important;
1383
- }
1384
-
1385
- p-button {
1386
- width: 100% !important;
1387
- background: transparent !important;
1388
- border: none !important;
1389
- box-shadow: none !important;
1390
- }
1391
-
1392
- .p-fileupload-choose-button,
1393
- .p-fileupload-choose {
1394
- background: transparent !important;
1395
- border: 1px solid var(--theme-dark) !important;
1396
- border-radius: 30px !important;
1397
- box-shadow: none !important;
1398
- color: var(--theme-dark) !important;
1399
- width: 100% !important;
1400
- padding: 0.875rem 1.5rem !important;
1401
- font-weight: 600 !important;
1402
- justify-content: center !important;
1403
- gap: 0.5rem !important;
1404
-
1405
- &:hover:not(:disabled) {
1406
- background: var(--theme-dark) !important;
1407
- border-color: var(--theme-dark) !important;
1408
- color: #ffffff !important;
1409
-
1410
- .p-button-label,
1411
- .p-button-icon {
1412
- color: #ffffff !important;
1413
- }
1414
- }
1415
-
1416
- .p-button-label {
1417
- color: inherit !important;
1418
- flex: 0 0 auto !important;
1419
- max-width: unset !important;
1420
- overflow: visible !important;
1421
- }
1422
-
1423
- .p-button-icon {
1424
- color: inherit !important;
1425
- }
1426
- }
1427
- }
1428
-
1429
- vector-data-table {
1430
- vector-panel.data-table-panel .p-panel,
1431
- vector-panel.data-table-panel .p-panel-content,
1432
- vector-panel.data-table-panel .p-panel-content > div {
1433
- border-radius: 15px !important;
1434
- }
1435
-
1436
- p-table {
1437
- .p-datatable-wrapper {
1438
- }
1439
-
1440
- .p-datatable-table {
1441
- border-radius: 15px !important;
1442
- }
1443
-
1444
- // PrimeNG 18 removeu o responsiveLayout: o .p-column-title (header embutido
1445
- // em cada celula por getCellContent) precisa ser escondido manualmente.
1446
- .p-column-title {
1447
- display: none;
1448
- }
1449
-
1450
- .p-datatable-thead {
1451
- border-radius: 15px !important;
1452
- z-index: 0 !important;
1453
-
1454
- .header {
1455
- th {
1456
- white-space: normal !important;
1457
- position: relative;
1458
- padding: 10px 10px 10px 35px !important;
1459
- background-color: var(--gray-light) !important;
1460
- color: #1f2937 !important;
1461
-
1462
- > div {
1463
- gap: 8px;
1464
- }
1465
-
1466
- &:first-child {
1467
- border-top-left-radius: 15px !important;
1468
- padding: 10px !important;
1469
- }
1470
-
1471
- &:last-child {
1472
- border-top-right-radius: 15px !important;
1473
- }
1474
-
1475
- p-sorticon {
1476
- svg {
1477
- height: 0.85rem !important;
1478
- width: 0.85rem !important;
1479
- }
1480
-
1481
- sortamountupalticon svg,
1482
- sortamountdownicon svg {
1483
- color: var(--theme-primary) !important;
1484
- }
1485
- }
1486
-
1487
- &.p-highlight {
1488
- color: var(--theme-primary) !important;
1489
- }
1490
- }
1491
- }
1492
- }
1493
-
1494
- .p-datatable-tbody {
1495
- tr.p-highlight {
1496
- background-color: #eff6ff !important;
1497
- }
1498
- }
1499
-
1500
- .row {
1501
- background: transparent !important;
1502
-
1503
- .cell {
1504
- white-space: normal !important;
1505
-
1506
- .boolean-value-positive {
1507
- color: var(--success-color);
1508
- }
1509
-
1510
- .boolean-value-negative {
1511
- color: var(--error-color);
1512
- }
1513
-
1514
- .status-table-field {
1515
- font-size: 1.4em;
1516
- }
1517
-
1518
- .table-button {
1519
- cursor: pointer;
1520
- color: var(--theme-primary);
1521
- }
1522
- }
1523
-
1524
- .no-results {
1525
- border-bottom-left-radius: 15px;
1526
- border-bottom-right-radius: 15px;
1527
- }
1528
- }
1529
-
1530
- .p-paginator .p-paginator-pages .p-paginator-page.p-highlight {
1531
- color: #fff !important;
1532
- }
1533
-
1534
- .p-paginator-bottom {
1535
- border-radius: 15px !important;
1536
- }
1537
- }
1538
-
1539
- p-tabview {
1540
- .p-tabpanels {
1541
- display: none !important;
1542
- }
1543
-
1544
- .p-tablist .p-tab {
1545
- justify-content: center;
1546
-
1547
- &.p-tab-active {
1548
- color: var(--theme-primary) !important;
1549
- }
1550
- }
1551
- }
1552
-
1553
- vector-panel p-panel .p-panel .p-panel-content {
1554
- padding: 0px !important;
1555
- }
1556
- }
1557
-
1558
- .success {
1559
- color: var(--success-color);
1560
- }
1561
- .error {
1562
- color: var(--error-color);
1563
- }
1564
- .warning {
1565
- color: var(--warning-color);
1566
- }
1567
- .info {
1568
- color: var(--theme-light);
1569
- }
1570
-
1571
- p-tabview {
1572
- background: transparent !important;
1573
-
1574
- .p-tabpanels,
1575
- .p-tabpanel,
1576
- .p-tabview-panel {
1577
- background: transparent !important;
1578
- }
1579
-
1580
- .p-tablist-tab-list {
1581
- background: none !important;
1582
- .p-tab.p-tab-active {
1583
- border-color: var(--theme-primary) !important;
1584
- }
1585
-
1586
- .p-tab {
1587
- border-top-right-radius: 0px !important;
1588
- border-top-left-radius: 0px !important;
1589
- color: var(--theme-primary) !important;
1590
-
1591
- &:hover {
1592
- border-color: var(--theme-primary) !important;
1593
- border-bottom-width: 2px !important;
1594
- }
1595
- }
1596
- .p-tablist-active-bar {
1597
- height: 2px !important;
1598
- background: var(--theme-primary) !important;
1599
- }
1600
- }
1601
- }
1602
-
1603
- .p-accordion {
1604
- .p-accordionpanel {
1605
- margin: 20px 0;
1606
- border: none !important;
1607
- background: transparent !important;
1608
- border-radius: 16px !important;
1609
- box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.06) !important;
1610
- overflow: hidden;
1611
- }
1612
-
1613
- .p-accordionheader {
1614
- position: relative !important;
1615
- border: none !important;
1616
- border-radius: 0 !important;
1617
- box-shadow: none !important;
1618
- background: #ffffff !important;
1619
- color: var(--theme-dark) !important;
1620
- padding: 1.25rem 1.5rem !important;
1621
- font-weight: 600 !important;
1622
-
1623
- &:hover {
1624
- background: #ffffff !important;
1625
- color: var(--theme-dark) !important;
1626
- }
1627
-
1628
- &:focus,
1629
- &:focus-visible {
1630
- outline: none !important;
1631
- box-shadow: none !important;
1632
- }
1633
- }
1634
-
1635
- .p-accordionheader-toggle-icon {
1636
- position: absolute !important;
1637
- right: 1.5rem !important;
1638
- top: 50% !important;
1639
- left: auto !important;
1640
- margin: 0 !important;
1641
- color: var(--theme-dark) !important;
1642
- transform: translateY(-50%) rotate(-90deg);
1643
- transition: transform 0.2s ease;
1644
- }
1645
-
1646
- .p-accordionheader[aria-expanded='true'] .p-accordionheader-toggle-icon {
1647
- transform: translateY(-50%) rotate(0deg);
1648
- }
1649
-
1650
- .p-accordioncontent {
1651
- border: none !important;
1652
- background: #ffffff !important;
1653
- }
1654
-
1655
- .p-accordioncontent-content {
1656
- border: none !important;
1657
- background: #ffffff !important;
1658
- border-radius: 0 !important;
1659
- box-shadow: none !important;
1660
- padding: 0 1.5rem 1.5rem !important;
1661
- color: inherit !important;
1662
- }
1663
- }
1664
-
1665
- .p-chip {
1666
- display: inline-block;
1667
- padding: 0 16px !important;
1668
- height: 40px;
1669
- font-weight: 500;
1670
- font-size: 13px;
1671
- line-height: 40px;
1672
- border-radius: 25px !important;
1673
- background-color: #e5e5ea !important;
1674
- color: #002463 !important;
1675
- opacity: 0.5;
1676
-
1677
- span {
1678
- border: 2px solid;
1679
- border-radius: 50%;
1680
- width: 25px;
1681
- height: 25px;
1682
- margin-left: 5px;
1683
- margin-top: 7px;
1684
- color: #abaab5;
1685
-
1686
- i {
1687
- position: relative;
1688
- top: -11px;
1689
- left: -6px;
1690
- font-size: 12px;
1691
- }
1692
- }
1693
-
1694
- .closebtn {
1695
- padding-left: 10px;
1696
- font-weight: bold;
1697
- float: right;
1698
- font-size: 20px;
1699
- cursor: pointer;
1700
- }
1701
-
1702
- .closebtn:hover {
1703
- color: #000;
1704
- }
1705
- }
1706
-
1707
- .p-menu.p-menu-overlay {
1708
- width: fit-content;
1709
- padding: 8px 0;
1710
- border-radius: 8px;
1711
- background-color: #ffffff !important;
1712
- border: 1px solid #d9dbe9 !important;
1713
- box-shadow:
1714
- 0 1px 2px 0 rgba(31, 41, 55, 0.1),
1715
- 0 2px 4px 0 rgba(31, 41, 55, 0.1),
1716
- 0 4px 8px 0 rgba(31, 41, 55, 0.1),
1717
- 0 8px 16px 0 rgba(31, 41, 55, 0.1);
1718
-
1719
- ul {
1720
- display: flex;
1721
- flex-direction: column;
1722
- max-height: 200px !important;
1723
- overflow-y: auto;
1724
- overflow-x: hidden;
1725
-
1726
- &::-webkit-scrollbar {
1727
- width: 16px;
1728
- }
1729
- &::-webkit-scrollbar-track {
1730
- background: transparent;
1731
- }
1732
- &::-webkit-scrollbar-thumb {
1733
- background: var(--theme-medium);
1734
- border-radius: 10px;
1735
- border: 5px solid transparent;
1736
- background-clip: padding-box;
1737
- }
1738
-
1739
- li {
1740
- border-radius: 4px;
1741
- }
1742
-
1743
- .p-menu-item-content {
1744
- border-radius: 4px;
1745
- background-color: transparent !important;
1746
- }
1747
-
1748
- .p-menu-item-link {
1749
- border-radius: 4px;
1750
- }
1751
-
1752
- .p-menu-item-icon,
1753
- .p-menu-item-label {
1754
- color: #434560 !important;
1755
- }
1756
-
1757
- .p-menu-item-label {
1758
- font-weight: 500 !important;
1759
- }
1760
-
1761
- .p-menu-item-content:hover,
1762
- .p-menu-item.p-focus .p-menu-item-content {
1763
- background-color: var(--theme-medium) !important;
1764
-
1765
- .p-menu-item-icon,
1766
- .p-menu-item-label {
1767
- color: #ffffff !important;
1768
- }
1769
- }
1770
- }
1771
- }
1772
-
1773
- .p-toggleswitch {
1774
- flex: 0 0 auto;
1775
- }
1776
-
1777
- .p-toggleswitch.p-focus .p-toggleswitch-slider {
1778
- box-shadow: none !important;
1779
- }
1780
-
1781
- .p-toggleswitch.p-toggleswitch-checked .p-toggleswitch-slider {
1782
- background-color: var(--theme-primary) !important;
1783
- }
1784
-
1785
- .custom-field-text {
1786
- input[type='text'],
1787
- input[type='password'] {
1788
- border-radius: 6px;
1789
- color: #757b8a !important;
1790
-
1791
- &:focus:not(.ng-invalid):not(.p-inputmask) {
1792
- border: 2px solid #6690f3 !important;
1793
- }
1794
- &:not(.ng-invalid) {
1795
- border: 2px solid #e1e4ea !important;
1796
- }
1797
- }
1798
- &.input-otp {
1799
- justify-content: center;
1800
-
1801
- input[type='text'] {
1802
- padding: 10px;
1803
- min-height: 54px;
1804
- width: 46px;
1805
- font-size: 1.6em !important;
1806
- font-weight: 600;
1807
- color: #363636 !important;
1808
-
1809
- @media screen and (max-width: 576px) {
1810
- padding: 0;
1811
- width: 40px;
1812
- font-size: 1.2em !important;
1813
- font-weight: 600;
1814
- }
1815
- }
1816
- }
1817
- &.uppercase {
1818
- input[type='text'] {
1819
- text-transform: uppercase;
1820
- }
1821
- span {
1822
- text-transform: none;
1823
- }
1824
- }
1825
- &.centered {
1826
- input[type='text'] {
1827
- text-align: center;
1828
- }
1829
- }
1830
- &.size-lg {
1831
- input[type='text'] {
1832
- font-size: 1.3em !important;
1833
- }
1834
- }
1835
- }
1836
-
1837
- .vector-text {
1838
- &.uppercase {
1839
- input[type='text'] {
1840
- text-transform: uppercase;
1841
- }
1842
- span {
1843
- text-transform: none;
1844
- }
1845
- }
1846
- }
1847
-
1848
- .multiselect-flags {
1849
- .p-multiselect-overlay .p-multiselect-list {
1850
- .p-multiselect-item {
1851
- span {
1852
- color: #757b8a;
1853
- }
1854
- &:hover {
1855
- background: #e1e4ea !important;
1856
- }
1857
- &:not(.p-highlight):not(.p-disabled).p-focus {
1858
- background: #e1e4ea !important;
1859
- }
1860
- &.p-highlight {
1861
- background: #e1e4ea !important;
1862
- }
1863
- }
1864
- }
1865
- }
1
+ .ch {
2
+ cursor: help;
3
+ }
4
+ .cp {
5
+ cursor: pointer;
6
+ }
7
+ .p-focus,
8
+ .p-element:focus {
9
+ box-shadow: none !important;
10
+ }
11
+
12
+ .field {
13
+ margin-bottom: 0rem !important;
14
+ }
15
+
16
+ .p-button.p-button-icon-only {
17
+ padding: 0.7rem !important;
18
+ min-height: 41.25px !important;
19
+ }
20
+
21
+ .p-button:hover:not(:disabled) .p-button-icon,
22
+ .p-button.success .p-button-icon {
23
+ color: #fff !important;
24
+ }
25
+
26
+ .p-button.p-button-link {
27
+ color: var(--theme-dark);
28
+ background: transparent;
29
+ border: transparent;
30
+ }
31
+ .p-button.p-button-link:enabled:hover {
32
+ background: transparent;
33
+ color: var(--theme-dark);
34
+ border-color: transparent;
35
+ }
36
+ .p-button.p-button-link:enabled:hover .p-button-label {
37
+ text-decoration: none;
38
+ }
39
+ .p-button.p-button-link:enabled:focus {
40
+ background: transparent;
41
+ box-shadow: 0 0 0 0.2rem #a6d5fa;
42
+ border-color: transparent;
43
+ }
44
+ .p-button.p-button-link:enabled:active {
45
+ background: transparent;
46
+ color: var(--theme-dark);
47
+ border-color: transparent;
48
+ }
49
+
50
+ p-button {
51
+ width: 100%;
52
+ border-width: 2px;
53
+ border-radius: var(--border-radius);
54
+ background-color: var(--theme-dark);
55
+ border-color: var(--theme-dark);
56
+ color: #ffffff;
57
+ box-shadow: 0px 5px 5px rgba(0, 70, 232, 0.5);
58
+
59
+ button {
60
+ width: 100% !important;
61
+ }
62
+
63
+ &.round {
64
+ button {
65
+ border-radius: 8px;
66
+ }
67
+ }
68
+
69
+ &:hover:not(:disabled) {
70
+ background-color: #003049;
71
+ border-color: #003049;
72
+ }
73
+
74
+ &:focus {
75
+ box-shadow: none;
76
+ }
77
+
78
+ &:disabled {
79
+ cursor: not-allowed;
80
+ }
81
+ .no-shadow {
82
+ box-shadow: none;
83
+ }
84
+
85
+ .p-button {
86
+ border-width: 2px !important;
87
+ }
88
+
89
+ .default {
90
+ background-color: #ffffff;
91
+ border-color: var(--theme-dark);
92
+
93
+ .p-button-label {
94
+ color: var(--theme-dark);
95
+ }
96
+
97
+ .p-button-icon {
98
+ color: var(--theme-dark);
99
+ }
100
+
101
+ &:hover:not(:disabled) {
102
+ background-color: var(--theme-dark);
103
+ border-color: var(--theme-dark);
104
+ .p-button-label {
105
+ color: #ffffff;
106
+ }
107
+ }
108
+ }
109
+
110
+ .default-filled {
111
+ background-color: var(--theme-primary);
112
+ border-color: var(--theme-primary);
113
+ .p-button-label {
114
+ color: #ffffff;
115
+ }
116
+ .p-button-icon {
117
+ color: #ffffff;
118
+ }
119
+
120
+ &:hover:not(:disabled) {
121
+ background-color: var(--theme-dark);
122
+ border-color: var(--theme-dark);
123
+ }
124
+ }
125
+
126
+ .cancel {
127
+ background-color: #ffffff;
128
+ border-color: var(--error-color);
129
+ .p-button-label {
130
+ color: var(--error-color);
131
+ }
132
+ .p-button-icon {
133
+ color: var(--error-color);
134
+ }
135
+
136
+ &:hover:not(:disabled) {
137
+ background-color: var(--error-color-dark);
138
+ border-color: var(--error-color-dark);
139
+ .p-button-label {
140
+ color: #ffffff;
141
+ }
142
+ }
143
+ }
144
+
145
+ .cancel-filled {
146
+ background-color: var(--error-color);
147
+ border-color: var(--error-color);
148
+ .p-button-label {
149
+ color: #ffffff;
150
+ }
151
+
152
+ .p-button-icon {
153
+ color: #ffffff;
154
+ }
155
+
156
+ &:hover:not(:disabled) {
157
+ background-color: var(--error-color-dark);
158
+ border-color: var(--error-color-dark);
159
+ }
160
+ }
161
+
162
+ .success {
163
+ background-color: var(--success-color);
164
+ border-color: var(--success-color);
165
+ .p-button-label {
166
+ color: #fff;
167
+ }
168
+ .p-button-icon {
169
+ color: #fff;
170
+ }
171
+
172
+ &:hover:not(:disabled) {
173
+ background-color: var(--success-color-dark);
174
+ border-color: var(--success-color-dark);
175
+ }
176
+ }
177
+
178
+ .light-outline {
179
+ background-color: var(--background);
180
+ border-color: var(--gray-medium);
181
+ .p-button-label {
182
+ color: var(--success-color);
183
+ }
184
+ .p-button-icon {
185
+ color: var(--success-color);
186
+ }
187
+
188
+ &:hover:not(:disabled) {
189
+ background-color: var(--success-color-dark);
190
+ border-color: var(--success-color-dark);
191
+ .p-button-label {
192
+ color: #fff;
193
+ }
194
+ }
195
+ }
196
+
197
+ .success-outlined {
198
+ background-color: #ffffff;
199
+ border-color: var(--success-color);
200
+
201
+ .p-button-label {
202
+ color: var(--success-color);
203
+ }
204
+ .p-button-icon {
205
+ color: var(--success-color);
206
+ }
207
+
208
+ &:hover:not(:disabled) {
209
+ background-color: var(--success-color-dark);
210
+ border-color: var(--success-color-dark);
211
+
212
+ .p-button-label {
213
+ color: #fff;
214
+ }
215
+ }
216
+ }
217
+
218
+ .default-outlined {
219
+ background-color: #ffffff;
220
+ border-color: var(--theme-light);
221
+
222
+ .p-button-label {
223
+ color: var(--theme-light);
224
+ }
225
+ .p-button-icon {
226
+ color: var(--theme-light);
227
+ }
228
+
229
+ &:hover:not(:disabled) {
230
+ background-color: var(--theme-primary);
231
+ border-color: var(--theme-primary);
232
+
233
+ .p-button-label {
234
+ color: #fff;
235
+ }
236
+ }
237
+ }
238
+ .default-outlined-gray {
239
+ background-color: #ffffff;
240
+ border-color: var(--gray-medium);
241
+
242
+ .p-button-label {
243
+ color: var(--theme-light);
244
+ }
245
+ .p-button-icon {
246
+ color: var(--theme-light);
247
+ }
248
+
249
+ &:hover:not(:disabled) {
250
+ background-color: var(--theme-primary);
251
+ border-color: var(--theme-primary);
252
+
253
+ .p-button-label {
254
+ color: #fff;
255
+ }
256
+ }
257
+ }
258
+ .default-outlined-gray-icon-red {
259
+ background-color: #ffffff;
260
+ border-color: var(--gray-medium);
261
+
262
+ .p-button-label {
263
+ color: var(--theme-light);
264
+ }
265
+ .p-button-icon {
266
+ color: var(--cancel-color);
267
+ }
268
+
269
+ &:hover:not(:disabled) {
270
+ background-color: var(--cancel-color);
271
+ border-color: var(--cancel-color);
272
+
273
+ .p-button-label {
274
+ color: #fff;
275
+ }
276
+ }
277
+ }
278
+ .default-outlined-gray-icon-gray {
279
+ background-color: #ffffff;
280
+ border-color: var(--gray-medium);
281
+
282
+ .p-button-label {
283
+ color: var(--form-labels-color);
284
+ }
285
+ .p-button-icon {
286
+ color: var(--form-labels-color);
287
+ }
288
+
289
+ &:hover:not(:disabled) {
290
+ background-color: var(--gray-medium);
291
+ border-color: var(--gray-medium);
292
+
293
+ .p-button-label {
294
+ color: var(--form-labels-color);
295
+ }
296
+ .p-button-icon {
297
+ color: var(--form-labels-color);
298
+ }
299
+ }
300
+ }
301
+ }
302
+
303
+ .p-inputgroup {
304
+ display: flex;
305
+ align-items: stretch;
306
+ width: 100%;
307
+
308
+ > input,
309
+ > p-inputmask {
310
+ flex: 1 1 auto;
311
+ width: 1%;
312
+ }
313
+
314
+ vector-button {
315
+ flex: 0 0 auto;
316
+
317
+ p-button,
318
+ button {
319
+ width: auto !important;
320
+ }
321
+ }
322
+ }
323
+
324
+ .p-input-icon-left,
325
+ .p-input-icon-right {
326
+ position: relative;
327
+ }
328
+
329
+ .p-input-icon-left > i,
330
+ .p-input-icon-left > svg {
331
+ position: absolute;
332
+ top: 50%;
333
+ left: 0.75rem;
334
+ margin-top: -0.5rem;
335
+ z-index: 1;
336
+ }
337
+
338
+ .p-input-icon-right > i,
339
+ .p-input-icon-right > svg {
340
+ position: absolute;
341
+ top: 50%;
342
+ right: 0.75rem;
343
+ margin-top: -0.5rem;
344
+ z-index: 1;
345
+ }
346
+
347
+ .p-autocomplete-input {
348
+ border-right: none !important;
349
+ border-top-right-radius: 0px !important;
350
+ border-bottom-right-radius: 0px !important;
351
+ padding: 6px 0px 6px 12px !important;
352
+
353
+ &:focus + .p-autocomplete-dropdown {
354
+ background-color: #ffffff !important;
355
+ border-right: 2px solid var(--theme-dark) !important;
356
+ border-top: 2px solid var(--theme-dark) !important;
357
+ border-bottom: 2px solid var(--theme-dark) !important;
358
+ }
359
+ }
360
+
361
+ .p-inputwrapper-focus .p-autocomplete-dropdown {
362
+ background-color: #ffffff !important;
363
+ border-right: 2px solid var(--theme-dark) !important;
364
+ border-top: 2px solid var(--theme-dark) !important;
365
+ border-bottom: 2px solid var(--theme-dark) !important;
366
+ }
367
+
368
+ .p-autocomplete-dropdown {
369
+ background-color: var(--gray-light) !important;
370
+ border: none !important;
371
+ margin-left: -1px !important;
372
+ border-top-right-radius: var(--border-radius) !important;
373
+ border-bottom-right-radius: var(--border-radius) !important;
374
+ color: var(--gray-dark) !important;
375
+ padding-bottom: 5px !important;
376
+ }
377
+
378
+ .p-select,
379
+ .p-multiselect {
380
+ height: 40px;
381
+ background-color: var(--gray-medium) !important;
382
+
383
+ .p-select-label,
384
+ .p-multiselect-label {
385
+ font-family: 'Poppins';
386
+ color: var(--theme-dark) !important;
387
+ font-weight: 500;
388
+ display: flex;
389
+ align-items: center;
390
+ }
391
+ }
392
+
393
+ .p-paginator .p-select {
394
+ width: auto !important;
395
+ height: auto !important;
396
+ background-color: transparent !important;
397
+ border: 1px solid var(--gray-medium) !important;
398
+ border-radius: 8px !important;
399
+
400
+ .p-select-label {
401
+ padding: 8px 12px !important;
402
+ color: var(--theme-dark) !important;
403
+ font-weight: 600;
404
+ }
405
+
406
+ .p-select-dropdown {
407
+ color: var(--theme-dark) !important;
408
+ }
409
+ }
410
+
411
+ .p-paginator .p-paginator-first,
412
+ .p-paginator .p-paginator-prev,
413
+ .p-paginator .p-paginator-next,
414
+ .p-paginator .p-paginator-last {
415
+ color: var(--theme-dark) !important;
416
+ }
417
+
418
+ p-inputnumber:not(.currency-input).ng-touched.ng-invalid input.p-inputnumber-input {
419
+ border-color: var(--error-color) !important;
420
+ background-color: var(--error-color-transparent) !important;
421
+ }
422
+
423
+ p-inputnumber.currency-input:not(.outlined) {
424
+ &.ng-touched.ng-invalid input.p-inputnumber-input {
425
+ color: var(--error-color) !important;
426
+ }
427
+
428
+ &.rounded input.p-inputnumber-input {
429
+ font-size: 1rem !important;
430
+ }
431
+
432
+ input.p-inputnumber-input {
433
+ font-size: 2em !important;
434
+ border: none !important;
435
+ font-weight: 600 !important;
436
+ background-color: #ffffff !important;
437
+ color: var(--theme-dark) !important;
438
+ width: 100% !important;
439
+ padding: 0px !important;
440
+ height: 2em !important;
441
+
442
+ &:focus {
443
+ outline: 0 !important;
444
+ box-shadow: none !important;
445
+ }
446
+ }
447
+ }
448
+
449
+ .p-inputnumber-buttons-horizontal,
450
+ .p-inputnumber.p-inputnumber-horizontal {
451
+ display: flex !important;
452
+ flex-direction: row !important;
453
+ align-items: stretch !important;
454
+ width: 100% !important;
455
+
456
+ p-button,
457
+ .p-inputnumber-button-group {
458
+ width: auto !important;
459
+ background: transparent !important;
460
+ border: none !important;
461
+ box-shadow: none !important;
462
+ display: inline-flex !important;
463
+ align-items: stretch !important;
464
+ }
465
+
466
+ .p-inputnumber-input {
467
+ flex: 1 1 auto !important;
468
+ min-width: 0 !important;
469
+ text-align: center !important;
470
+ border-radius: 0 !important;
471
+ }
472
+
473
+ .p-inputnumber-button,
474
+ button.p-inputnumber-increment-button,
475
+ button.p-inputnumber-decrement-button,
476
+ .p-button {
477
+ width: 36px !important;
478
+ min-width: 36px !important;
479
+ flex: 0 0 36px !important;
480
+ padding: 0 !important;
481
+ color: var(--theme-primary) !important;
482
+ border: none !important;
483
+ border-radius: 0 !important;
484
+ background: var(--gray-light) !important;
485
+ box-shadow: none !important;
486
+ display: inline-flex !important;
487
+ align-items: center !important;
488
+ justify-content: center !important;
489
+
490
+ &:hover:not(:disabled) {
491
+ background: var(--gray-medium) !important;
492
+ color: var(--theme-dark) !important;
493
+ }
494
+
495
+ &:focus,
496
+ &:focus-visible {
497
+ outline: none !important;
498
+ box-shadow: none !important;
499
+ }
500
+
501
+ span,
502
+ .p-button-icon,
503
+ svg {
504
+ color: inherit !important;
505
+ font-weight: 600 !important;
506
+ border-radius: 0 !important;
507
+ }
508
+ }
509
+
510
+ .p-inputnumber-decrement-button,
511
+ .p-inputnumber-button:first-of-type {
512
+ border-top-left-radius: 0 !important;
513
+ border-bottom-left-radius: 0 !important;
514
+ border-top-right-radius: 0 !important;
515
+ border-bottom-right-radius: 0 !important;
516
+ }
517
+
518
+ .p-inputnumber-increment-button,
519
+ .p-inputnumber-button:last-of-type {
520
+ border-top-right-radius: 0 !important;
521
+ border-bottom-right-radius: 0 !important;
522
+ border-top-left-radius: 0 !important;
523
+ border-bottom-left-radius: 0 !important;
524
+ }
525
+ }
526
+
527
+ .p-multiselect {
528
+ padding: 6px 0px 6px 12px !important;
529
+
530
+ .p-multiselect-label {
531
+ padding: 0.3rem 0.5rem 0 0 !important;
532
+ }
533
+
534
+ .p-multiselect-trigger {
535
+ width: 12px !important;
536
+ &:hover {
537
+ color: #fff !important;
538
+ }
539
+ }
540
+
541
+ // PrimeNG 19: display="chip" renderiza <p-chip styleClass="p-multiselect-chip"> dentro do .p-multiselect-label
542
+ // Deixar inline, compacto, igual QA (PrimeNG 17 era assim por padrão)
543
+ &.p-multiselect-display-chip {
544
+ .p-multiselect-label {
545
+ display: inline-flex !important;
546
+ flex-wrap: wrap !important;
547
+ align-items: center !important;
548
+ gap: 4px !important;
549
+ padding: 0.15rem 0.5rem 0.15rem 0 !important;
550
+ min-height: 28px !important;
551
+ }
552
+
553
+ .p-multiselect-chip-item {
554
+ display: inline-flex !important;
555
+ align-items: center !important;
556
+ }
557
+
558
+ .p-multiselect-chip,
559
+ .p-chip {
560
+ height: 24px !important;
561
+ padding: 0 6px 0 10px !important;
562
+ background: #ffffff !important;
563
+ border: 1px solid #e5e7eb !important;
564
+ border-radius: 16px !important;
565
+ font-size: 12px !important;
566
+ font-weight: 500 !important;
567
+ line-height: 1 !important;
568
+ color: var(--theme-dark) !important;
569
+ gap: 4px !important;
570
+ display: inline-flex !important;
571
+ align-items: center !important;
572
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04) !important;
573
+
574
+ .p-chip-label,
575
+ .p-multiselect-chip-label {
576
+ max-width: 140px !important;
577
+ overflow: hidden !important;
578
+ text-overflow: ellipsis !important;
579
+ white-space: nowrap !important;
580
+ color: inherit !important;
581
+ }
582
+
583
+ .p-chip-remove-icon,
584
+ .p-multiselect-chip-icon,
585
+ svg {
586
+ width: 14px !important;
587
+ height: 14px !important;
588
+ color: var(--theme-dark) !important;
589
+ opacity: 0.6 !important;
590
+ cursor: pointer !important;
591
+
592
+ &:hover {
593
+ opacity: 1 !important;
594
+ }
595
+ }
596
+ }
597
+ }
598
+ }
599
+
600
+ input.p-inputtext:not(.currency-input),
601
+ .p-inputtextarea,
602
+ .p-textarea,
603
+ .p-multiselect {
604
+ &:not(:focus) {
605
+ border: none !important;
606
+ background-color: var(--gray-light) !important;
607
+ }
608
+ width: 100%;
609
+ padding: 6px 12px 6px 12px !important;
610
+ border-top-right-radius: var(--border-radius);
611
+ border-bottom-right-radius: var(--border-radius);
612
+ border-top-left-radius: var(--border-radius);
613
+ border-bottom-left-radius: var(--border-radius);
614
+ height: 40px;
615
+ font-size: 0.9em !important;
616
+ color: var(--theme-dark) !important;
617
+ font-weight: 500;
618
+
619
+ &:disabled {
620
+ cursor: not-allowed;
621
+ opacity: 0.6;
622
+ }
623
+
624
+ &:focus {
625
+ outline: 0 !important;
626
+ box-shadow: none !important;
627
+ border: 2px solid var(--theme-dark);
628
+ background-color: #ffffff;
629
+ }
630
+
631
+ &:hover,
632
+ &:focus:not(.ng-invalid):not(.p-inputmask) {
633
+ border-color: var(--theme-dark) !important;
634
+ }
635
+
636
+ &::placeholder {
637
+ color: var(--theme-dark);
638
+ opacity: 0.8;
639
+ }
640
+
641
+ &.ng-touched.ng-invalid {
642
+ border-color: var(--error-color) !important;
643
+ background-color: var(--error-color-transparent) !important;
644
+ }
645
+
646
+ &:not(.ng-invalid) {
647
+ border-color: var(--theme-dark) !important;
648
+ }
649
+ }
650
+
651
+ .p-inputtextarea,
652
+ .p-textarea {
653
+ padding-right: 62px !important;
654
+ resize: none;
655
+ height: unset !important;
656
+ }
657
+
658
+ .p-datepicker {
659
+ width: 100% !important;
660
+ .p-inputtext {
661
+ color: var(--theme-dark) !important;
662
+ font-weight: 600 !important;
663
+ margin-left: -1px !important;
664
+ border-top-right-radius: 0px !important;
665
+ border-bottom-right-radius: 0px !important;
666
+
667
+ &:focus {
668
+ border-right: none !important;
669
+
670
+ + .p-datepicker-dropdown {
671
+ border-right: 2px solid var(--theme-dark) !important;
672
+ border-top: 2px solid var(--theme-dark) !important;
673
+ border-bottom: 2px solid var(--theme-dark) !important;
674
+ background-color: #ffffff !important;
675
+ }
676
+ }
677
+ }
678
+
679
+ .p-datepicker-dropdown {
680
+ background-color: var(--gray-light) !important;
681
+ border: none !important;
682
+ border-top-right-radius: var(--border-radius) !important;
683
+ border-bottom-right-radius: var(--border-radius) !important;
684
+
685
+ span {
686
+ color: var(--theme-dark) !important;
687
+ }
688
+ }
689
+ }
690
+ p-datepicker.ng-touched.ng-invalid {
691
+ .p-datepicker {
692
+ width: 100% !important;
693
+ input.p-inputtext:not(.currency-input),
694
+ .p-inputtextarea {
695
+ &:not(:focus) {
696
+ border: none !important;
697
+ background-color: var(--error-color-transparent) !important;
698
+ }
699
+ }
700
+ }
701
+
702
+ .p-datepicker-dropdown {
703
+ border-color: var(--error-color) !important;
704
+ background-color: var(--error-color-transparent) !important;
705
+ }
706
+
707
+ .p-focus {
708
+ input.p-inputtext:not(.currency-input),
709
+ .p-inputtextarea {
710
+ border-color: var(--error-color) !important;
711
+ background-color: var(--error-color-transparent) !important;
712
+ }
713
+ .p-datepicker-dropdown {
714
+ border-right: 2px solid var(--error-color) !important;
715
+ border-top: 2px solid var(--error-color) !important;
716
+ border-bottom: 2px solid var(--error-color) !important;
717
+ background-color: var(--error-color-transparent) !important;
718
+ }
719
+ }
720
+ }
721
+
722
+ p-inputmask {
723
+ flex: 1;
724
+ }
725
+ p-inputmask.ng-touched.ng-invalid input {
726
+ border-color: var(--error-color) !important;
727
+ background-color: var(--error-color-transparent) !important;
728
+ }
729
+
730
+ p-inputnumber:not(.currency-input),
731
+ p-inputnumber.outlined {
732
+ display: block !important;
733
+
734
+ span {
735
+ width: 100%;
736
+ }
737
+ }
738
+
739
+ p-inputnumber .text-centered input {
740
+ text-align: center;
741
+ }
742
+
743
+ p-radiobutton.ng-touched.ng-invalid .p-radiobutton-box {
744
+ border-color: var(--error-color) !important;
745
+ }
746
+
747
+ .p-radiobutton {
748
+ width: 24px;
749
+ height: 24px;
750
+
751
+ .p-radiobutton-box {
752
+ border: 2px solid #d1d5db !important;
753
+ background: #ffffff !important;
754
+ box-shadow: none !important;
755
+ }
756
+
757
+ &:not(.p-disabled):hover .p-radiobutton-box {
758
+ border-color: #1545de !important;
759
+ }
760
+
761
+ &.p-radiobutton-checked .p-radiobutton-box {
762
+ border-color: #1545de !important;
763
+ background: #1545de !important;
764
+
765
+ .p-radiobutton-icon {
766
+ background: #ffffff !important;
767
+ }
768
+ }
769
+
770
+ .p-radiobutton-input:focus-visible + .p-radiobutton-box,
771
+ &.p-focus .p-radiobutton-box {
772
+ border-color: #1545de !important;
773
+ box-shadow: 0 0 0 3px #ced9fa !important;
774
+ }
775
+ }
776
+
777
+ .p-steps .p-steps-item.p-steps-item-active {
778
+ background-color: transparent !important;
779
+
780
+ .p-steps-item-link .p-steps-item-number {
781
+ color: #fff !important;
782
+ background-color: var(--theme-medium) !important;
783
+ border-color: var(--theme-medium) !important;
784
+ }
785
+ }
786
+
787
+ .p-menu-list {
788
+ padding: 0px !important;
789
+ }
790
+
791
+ .p-menu-item-link {
792
+ padding: 0.75rem 1rem !important;
793
+ }
794
+
795
+ .p-steps .p-steps-item:not(.p-steps-item-active) {
796
+ .p-steps-item-label {
797
+ opacity: 0.4 !important;
798
+ }
799
+
800
+ .p-steps-item-link .p-steps-item-number {
801
+ color: var(--theme-medium) !important;
802
+ }
803
+ }
804
+
805
+ .p-steps .p-steps-item .p-steps-item-label {
806
+ color: var(--theme-medium) !important;
807
+ }
808
+
809
+ .p-steps .p-steps-item.p-disabled {
810
+ opacity: 1 !important;
811
+ }
812
+
813
+ .p-steps .p-steps-item .p-steps-item-link {
814
+ background: transparent !important;
815
+ padding: 0.75rem 1rem !important;
816
+
817
+ .p-steps-item-number {
818
+ min-width: 2.6rem !important;
819
+ height: 2.6rem !important;
820
+ line-height: 2.6rem !important;
821
+ font-size: 1rem !important;
822
+ border: 2px solid var(--theme-medium) !important;
823
+ }
824
+ }
825
+
826
+ .p-steps ul > li:nth-child(1):only-child::before {
827
+ content: unset !important;
828
+ }
829
+
830
+ .p-steps ul > li:not(:only-child)::before {
831
+ border-top: 1px dashed var(--theme-medium) !important;
832
+ }
833
+
834
+ .p-steps .p-steps-item:first-child:before {
835
+ width: 50% !important;
836
+ left: 50% !important;
837
+ transform: none !important;
838
+ }
839
+
840
+ .p-steps .p-steps-item:last-child:before {
841
+ width: 50% !important;
842
+ }
843
+
844
+ .p-steps .p-steps-item.checked .p-steps-item-label {
845
+ color: var(--success-color-dark) !important;
846
+ }
847
+
848
+ .p-steps .p-steps-item.checked .p-steps-item-link .p-steps-item-number {
849
+ background-color: var(--success-color-dark) !important;
850
+ color: #fff !important;
851
+ border: 2px solid var(--success-color-dark) !important;
852
+ }
853
+
854
+ .p-steps .p-steps-item .p-steps-item-link .p-steps-item-number.disabled {
855
+ color: var(--gray-dark) !important;
856
+ border: 2px solid var(--gray-dark) !important;
857
+ }
858
+
859
+ .p-highlight {
860
+ background-color: var(--theme-primary) !important;
861
+ border-color: var(--theme-primary) !important;
862
+ }
863
+
864
+ .p-button:focus {
865
+ box-shadow: unset !important;
866
+ }
867
+
868
+ .p-button.button {
869
+ display: flex !important;
870
+ flex-direction: row !important;
871
+ justify-content: center !important;
872
+
873
+ .p-button-label {
874
+ flex: unset !important;
875
+ }
876
+ }
877
+
878
+ .p-datepicker-panel {
879
+ border: 2px solid var(--theme-dark) !important;
880
+ border-radius: var(--border-radius) !important;
881
+ z-index: 15000 !important;
882
+
883
+ .p-datepicker-weekday {
884
+ color: var(--theme-dark) !important;
885
+ }
886
+
887
+ .p-datepicker-day {
888
+ color: var(--font-color) !important;
889
+
890
+ &:focus {
891
+ box-shadow: unset !important;
892
+ }
893
+ }
894
+
895
+ .p-datepicker-day-selected {
896
+ color: #ffffff !important;
897
+ }
898
+
899
+ p-button {
900
+ width: auto !important;
901
+ background: transparent !important;
902
+ box-shadow: none !important;
903
+
904
+ button {
905
+ width: auto !important;
906
+ min-width: 2rem !important;
907
+ background: transparent !important;
908
+ border: none !important;
909
+ box-shadow: none !important;
910
+ color: var(--theme-dark) !important;
911
+
912
+ &:hover:not(:disabled) {
913
+ background: var(--gray-light) !important;
914
+ border: none !important;
915
+ }
916
+ }
917
+
918
+ .p-button-icon {
919
+ color: var(--theme-dark) !important;
920
+ }
921
+ }
922
+ }
923
+
924
+ .p-toast {
925
+ .p-toast-message {
926
+ border-radius: 12px !important;
927
+ box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
928
+ border: none !important;
929
+ padding: 16px !important;
930
+ color: #1f2937 !important;
931
+ }
932
+
933
+ .p-toast-message-content {
934
+ gap: 12px !important;
935
+ align-items: center !important;
936
+ padding: 0 !important;
937
+ }
938
+
939
+ .p-toast-message-text {
940
+ gap: 4px !important;
941
+ }
942
+
943
+ .p-toast-summary {
944
+ color: #111827 !important;
945
+ font-family: 'Poppins', 'Inter', sans-serif !important;
946
+ font-weight: 600 !important;
947
+ font-size: 14px !important;
948
+ }
949
+
950
+ .p-toast-detail {
951
+ color: #4b5563 !important;
952
+ font-family: 'Poppins', 'Inter', sans-serif !important;
953
+ font-weight: 400 !important;
954
+ font-size: 12px !important;
955
+ }
956
+
957
+ .p-toast-message-icon {
958
+ width: 40px !important;
959
+ height: 40px !important;
960
+ min-width: 40px !important;
961
+ border-radius: 50% !important;
962
+ display: inline-flex !important;
963
+ align-items: center !important;
964
+ justify-content: center !important;
965
+ color: #ffffff !important;
966
+
967
+ svg,
968
+ .p-icon {
969
+ width: 22px !important;
970
+ height: 22px !important;
971
+ color: #ffffff !important;
972
+ fill: #ffffff !important;
973
+ }
974
+ }
975
+
976
+ .p-toast-message-warn {
977
+ background: #fde6c0 !important;
978
+ .p-toast-message-icon {
979
+ background: #f59e0b !important;
980
+ }
981
+ }
982
+
983
+ .p-toast-message-error {
984
+ background: #fee2e2 !important;
985
+ .p-toast-message-icon {
986
+ background: #ef4444 !important;
987
+ }
988
+ }
989
+
990
+ .p-toast-message-success {
991
+ background: #dcfce7 !important;
992
+ .p-toast-message-icon {
993
+ background: #22c55e !important;
994
+ }
995
+ }
996
+
997
+ p-button,
998
+ .p-toast-close-button {
999
+ width: auto !important;
1000
+ background: transparent !important;
1001
+ border: none !important;
1002
+ box-shadow: none !important;
1003
+ align-self: center !important;
1004
+
1005
+ button {
1006
+ width: 2rem !important;
1007
+ min-width: 2rem !important;
1008
+ height: 2rem !important;
1009
+ padding: 0 !important;
1010
+ background: transparent !important;
1011
+ border: none !important;
1012
+ box-shadow: none !important;
1013
+ color: #6b7280 !important;
1014
+ border-radius: 50% !important;
1015
+
1016
+ &:hover:not(:disabled) {
1017
+ background: rgba(0, 0, 0, 0.06) !important;
1018
+ border: none !important;
1019
+ color: #1f2937 !important;
1020
+ }
1021
+ }
1022
+
1023
+ .p-button-icon,
1024
+ .p-toast-close-icon {
1025
+ color: inherit !important;
1026
+ width: 1rem !important;
1027
+ height: 1rem !important;
1028
+ }
1029
+ }
1030
+ }
1031
+
1032
+ .p-overlaypanel:not(.background-white) {
1033
+ background-color: #01529b !important;
1034
+ }
1035
+
1036
+ .p-overlaypanel-content {
1037
+ padding: 6px 8px 6px 8px !important;
1038
+ }
1039
+
1040
+ .p-overlaypanel::after,
1041
+ .p-overlaypanel::before {
1042
+ border-bottom-color: #01529b !important;
1043
+ }
1044
+
1045
+ .p-dialog:not(.p-confirm-dialog) {
1046
+ .p-dialog-header {
1047
+ padding: 3px !important;
1048
+ border-top-left-radius: 9px !important;
1049
+ border-top-right-radius: 9px !important;
1050
+ }
1051
+
1052
+ .p-dialog-content {
1053
+ border-bottom-left-radius: 9px !important;
1054
+ border-bottom-right-radius: 9px !important;
1055
+ }
1056
+ }
1057
+
1058
+ .p-dialog .p-dialog-header .p-dialog-title {
1059
+ font-size: 1em !important;
1060
+ text-align: center !important;
1061
+ }
1062
+
1063
+ .p-dialog-header-close-icon {
1064
+ font-weight: 600 !important;
1065
+ }
1066
+
1067
+ .p-dialog .p-dialog-header p-button,
1068
+ .p-drawer .p-drawer-header p-button {
1069
+ width: auto !important;
1070
+ background: transparent !important;
1071
+ box-shadow: none !important;
1072
+
1073
+ button {
1074
+ width: 2rem !important;
1075
+ height: 2rem !important;
1076
+ min-width: 2rem !important;
1077
+ padding: 0 !important;
1078
+ border-radius: 50% !important;
1079
+ background: transparent !important;
1080
+ border: none !important;
1081
+ box-shadow: none !important;
1082
+ color: var(--gray-dark) !important;
1083
+ transition:
1084
+ background-color 0.15s ease,
1085
+ color 0.15s ease;
1086
+ }
1087
+
1088
+ &:hover button:not(:disabled) {
1089
+ background: var(--gray-light) !important;
1090
+ color: var(--theme-dark) !important;
1091
+ }
1092
+
1093
+ .p-dialog-header-close-icon,
1094
+ .p-button-icon {
1095
+ font-size: 1rem !important;
1096
+ }
1097
+ }
1098
+
1099
+ .p-confirm-dialog {
1100
+ .p-dialog-footer .actions {
1101
+ display: flex;
1102
+ align-items: center;
1103
+ justify-content: flex-end;
1104
+ gap: 20px;
1105
+ }
1106
+
1107
+ .p-confirm-dialog-icon {
1108
+ display: none !important;
1109
+ }
1110
+
1111
+ .p-confirm-dialog-message {
1112
+ margin-left: 0px !important;
1113
+ }
1114
+ }
1115
+
1116
+ .p-selectbutton {
1117
+ display: inline-flex !important;
1118
+ align-items: center !important;
1119
+ gap: 4px !important;
1120
+ padding: 4px !important;
1121
+ height: 42px !important;
1122
+ background-color: var(--gray-light) !important;
1123
+ border-radius: 12px !important;
1124
+ width: fit-content !important;
1125
+
1126
+ .p-togglebutton {
1127
+ display: inline-flex !important;
1128
+ align-items: center !important;
1129
+ height: 34px !important;
1130
+ margin: 0 !important;
1131
+ padding: 0 16px !important;
1132
+ border: none !important;
1133
+ border-radius: 8px !important;
1134
+ background: transparent !important;
1135
+ transition: all 0.2s ease;
1136
+
1137
+ .p-togglebutton-content {
1138
+ gap: 6px !important;
1139
+ font-size: 14px !important;
1140
+ font-weight: 500 !important;
1141
+ line-height: 1 !important;
1142
+ }
1143
+
1144
+ .p-togglebutton-label,
1145
+ .p-togglebutton-icon {
1146
+ color: var(--theme-dark) !important;
1147
+ }
1148
+
1149
+ &:not(.p-togglebutton-checked) {
1150
+ background-color: transparent !important;
1151
+ }
1152
+
1153
+ &.p-togglebutton-checked {
1154
+ background-color: #ffffff !important;
1155
+ box-shadow:
1156
+ 0 1px 2px 0 rgba(17, 55, 178, 0.1),
1157
+ 0 2px 4px 0 rgba(17, 55, 178, 0.1),
1158
+ 0 4px 8px 0 rgba(17, 55, 178, 0.1) !important;
1159
+
1160
+ .p-togglebutton-label,
1161
+ .p-togglebutton-icon {
1162
+ color: var(--brand-blue) !important;
1163
+ font-weight: 600 !important;
1164
+ }
1165
+ }
1166
+
1167
+ &:disabled,
1168
+ &.p-disabled {
1169
+ background-color: transparent !important;
1170
+ box-shadow: none !important;
1171
+
1172
+ .p-togglebutton-label,
1173
+ .p-togglebutton-icon {
1174
+ color: var(--gray-dark) !important;
1175
+ }
1176
+ }
1177
+ }
1178
+ }
1179
+
1180
+ vector-select-button-field.is-secondary {
1181
+ .p-selectbutton {
1182
+ background-color: var(--brand-light) !important;
1183
+ border-radius: 9999px !important;
1184
+ }
1185
+
1186
+ .p-togglebutton {
1187
+ padding: 0 20px !important;
1188
+ border-radius: 9999px !important;
1189
+ }
1190
+ }
1191
+
1192
+ .p-multiselect-overlay:not(.has-filter) .p-multiselect-header p-checkbox::after {
1193
+ content: 'Selecionar Todos';
1194
+ display: inline-block;
1195
+ margin-left: 0.5rem;
1196
+ color: var(--theme-dark);
1197
+ font-weight: 500;
1198
+ white-space: nowrap;
1199
+ }
1200
+
1201
+ .p-multiselect-header {
1202
+ .p-checkbox {
1203
+ width: max-content;
1204
+ }
1205
+ }
1206
+
1207
+ p-checkbox.rounded-checkbox,
1208
+ .rounded-checkbox {
1209
+ --p-checkbox-border-radius: 50%;
1210
+ --p-checkbox-checked-border-radius: 50%;
1211
+ }
1212
+
1213
+ .rounded-checkbox .p-checkbox,
1214
+ .rounded-checkbox .p-checkbox.p-checkbox-checked {
1215
+ background: transparent !important;
1216
+ border-radius: 50% !important;
1217
+ }
1218
+
1219
+ .rounded-checkbox .p-checkbox-input {
1220
+ background: transparent !important;
1221
+ border-radius: 50% !important;
1222
+ }
1223
+
1224
+ .rounded-checkbox .p-checkbox-box,
1225
+ .rounded-checkbox .p-checkbox.p-checkbox-checked .p-checkbox-box {
1226
+ border-radius: 50% !important;
1227
+ border: none !important;
1228
+ overflow: hidden !important;
1229
+ }
1230
+
1231
+ .rounded-checkbox .p-checkbox:not(.p-checkbox-checked) .p-checkbox-box {
1232
+ background-color: var(--gray-light) !important;
1233
+ }
1234
+
1235
+ .rounded-checkbox .p-checkbox.p-checkbox-checked .p-checkbox-box {
1236
+ background-color: var(--brand-blue) !important;
1237
+ }
1238
+
1239
+ p-checkbox.rounded-checkbox .p-checkbox-icon,
1240
+ .rounded-checkbox .p-checkbox-icon {
1241
+ font-size: 0.8em !important;
1242
+ padding-top: 2px !important;
1243
+ }
1244
+
1245
+ .p-checkbox-box.p-highlight,
1246
+ .p-checkbox.p-checkbox-checked .p-checkbox-box {
1247
+ background: var(--brand-blue) !important;
1248
+ border-color: var(--brand-blue) !important;
1249
+ }
1250
+
1251
+ .p-checkbox-box {
1252
+ border-width: 2px !important;
1253
+ border-color: var(--gray-dark) !important;
1254
+
1255
+ &:hover:not(.p-highlight) {
1256
+ border-color: var(--gray-dark) !important;
1257
+ }
1258
+ }
1259
+
1260
+ .p-select,
1261
+ .p-autocomplete {
1262
+ width: 100%;
1263
+ }
1264
+ p-autocomplete.ng-touched.ng-invalid {
1265
+ input.p-inputtext:not(.currency-input),
1266
+ .p-inputtextarea {
1267
+ &:not(:focus) {
1268
+ border: none !important;
1269
+ background-color: var(--error-color-transparent) !important;
1270
+ }
1271
+
1272
+ &:focus:not(.ng-invalid):not(.p-inputmask) {
1273
+ border-color: var(--error-color) !important;
1274
+ }
1275
+ }
1276
+ }
1277
+
1278
+ p-autocomplete.ng-touched.ng-invalid .p-autocomplete-dropdown,
1279
+ p-multiselect.ng-touched.ng-invalid .p-multiselect {
1280
+ border-color: var(--error-color) !important;
1281
+ background-color: var(--error-color-transparent) !important;
1282
+ }
1283
+
1284
+ .p-select-overlay,
1285
+ .p-autocomplete-panel,
1286
+ .p-multiselect-overlay {
1287
+ // max-width: 250px !important;
1288
+ min-width: 100%;
1289
+ border: 1px solid var(--theme-dark) !important;
1290
+ margin-top: -2px !important;
1291
+ border-radius: var(--border-radius) !important;
1292
+
1293
+ & .p-autocomplete-items,
1294
+ & .p-multiselect-list {
1295
+ padding-top: 0px !important;
1296
+ padding-bottom: 0px !important;
1297
+ padding-right: 1px !important;
1298
+ }
1299
+
1300
+ &::-webkit-scrollbar {
1301
+ width: 5px;
1302
+ }
1303
+
1304
+ &::-webkit-scrollbar-track {
1305
+ background: var(--gray-light);
1306
+ }
1307
+
1308
+ &::-webkit-scrollbar-thumb {
1309
+ background: var(--theme-dark);
1310
+ border-radius: 8px;
1311
+ }
1312
+
1313
+ &::-webkit-scrollbar-thumb:hover {
1314
+ background: var(--theme-dark);
1315
+ }
1316
+ }
1317
+
1318
+ .p-select-option,
1319
+ .p-autocomplete-item,
1320
+ .p-multiselect-item {
1321
+ text-overflow: ellipsis;
1322
+ color: var(--theme-dark) !important;
1323
+
1324
+ &:hover {
1325
+ background-color: var(--theme-dark) !important;
1326
+ color: #ffffff !important;
1327
+ }
1328
+ }
1329
+
1330
+ .p-select,
1331
+ .p-multiselect {
1332
+ border: none !important;
1333
+ .p-highlight {
1334
+ background-color: #ffffff !important;
1335
+ }
1336
+ }
1337
+ .p-select-overlay .p-select-list .p-select-option.p-highlight,
1338
+ .p-multiselect-overlay .p-multiselect-list .p-multiselect-item.p-highlight {
1339
+ background-color: var(--theme-dark) !important;
1340
+ color: #ffffff !important;
1341
+ }
1342
+
1343
+ .p-slider {
1344
+ background-color: #01529b;
1345
+ .p-slider-range {
1346
+ background-color: var(--success-color) !important;
1347
+ border-radius: inherit !important;
1348
+ }
1349
+ .p-slider-handle {
1350
+ border-color: var(--success-color) !important;
1351
+
1352
+ &:hover {
1353
+ background-color: var(--success-color) !important;
1354
+ }
1355
+ &:focus {
1356
+ box-shadow: unset !important;
1357
+ }
1358
+ }
1359
+ }
1360
+
1361
+ .p-fileupload {
1362
+ p-messages,
1363
+ p-message {
1364
+ display: none !important;
1365
+ }
1366
+
1367
+ .p-fileupload-filelabel,
1368
+ [class*='filelabel'] {
1369
+ display: none !important;
1370
+ }
1371
+
1372
+ input[type='file'] {
1373
+ position: absolute !important;
1374
+ width: 1px !important;
1375
+ height: 1px !important;
1376
+ padding: 0 !important;
1377
+ margin: 0 !important;
1378
+ overflow: hidden !important;
1379
+ clip: rect(0, 0, 0, 0) !important;
1380
+ white-space: nowrap !important;
1381
+ border: 0 !important;
1382
+ opacity: 0 !important;
1383
+ }
1384
+
1385
+ p-button {
1386
+ width: 100% !important;
1387
+ background: transparent !important;
1388
+ border: none !important;
1389
+ box-shadow: none !important;
1390
+ }
1391
+
1392
+ .p-fileupload-choose-button,
1393
+ .p-fileupload-choose {
1394
+ background: transparent !important;
1395
+ border: 1px solid var(--theme-dark) !important;
1396
+ border-radius: 30px !important;
1397
+ box-shadow: none !important;
1398
+ color: var(--theme-dark) !important;
1399
+ width: 100% !important;
1400
+ padding: 0.875rem 1.5rem !important;
1401
+ font-weight: 600 !important;
1402
+ justify-content: center !important;
1403
+ gap: 0.5rem !important;
1404
+
1405
+ &:hover:not(:disabled) {
1406
+ background: var(--theme-dark) !important;
1407
+ border-color: var(--theme-dark) !important;
1408
+ color: #ffffff !important;
1409
+
1410
+ .p-button-label,
1411
+ .p-button-icon {
1412
+ color: #ffffff !important;
1413
+ }
1414
+ }
1415
+
1416
+ .p-button-label {
1417
+ color: inherit !important;
1418
+ flex: 0 0 auto !important;
1419
+ max-width: unset !important;
1420
+ overflow: visible !important;
1421
+ }
1422
+
1423
+ .p-button-icon {
1424
+ color: inherit !important;
1425
+ }
1426
+ }
1427
+ }
1428
+
1429
+ vector-data-table {
1430
+ vector-panel.data-table-panel .p-panel,
1431
+ vector-panel.data-table-panel .p-panel-content,
1432
+ vector-panel.data-table-panel .p-panel-content > div {
1433
+ border-radius: 15px !important;
1434
+ }
1435
+
1436
+ p-table {
1437
+ .p-datatable-wrapper {
1438
+ }
1439
+
1440
+ .p-datatable-table {
1441
+ border-radius: 15px !important;
1442
+ }
1443
+
1444
+ // PrimeNG 18 removeu o responsiveLayout: o .p-column-title (header embutido
1445
+ // em cada celula por getCellContent) precisa ser escondido manualmente.
1446
+ .p-column-title {
1447
+ display: none;
1448
+ }
1449
+
1450
+ .p-datatable-thead {
1451
+ border-radius: 15px !important;
1452
+ z-index: 0 !important;
1453
+
1454
+ .header {
1455
+ th {
1456
+ white-space: normal !important;
1457
+ position: relative;
1458
+ padding: 10px 10px 10px 35px !important;
1459
+ background-color: var(--gray-light) !important;
1460
+ color: #1f2937 !important;
1461
+
1462
+ > div {
1463
+ gap: 8px;
1464
+ }
1465
+
1466
+ &:first-child {
1467
+ border-top-left-radius: 15px !important;
1468
+ padding: 10px !important;
1469
+ }
1470
+
1471
+ &:last-child {
1472
+ border-top-right-radius: 15px !important;
1473
+ }
1474
+
1475
+ p-sorticon {
1476
+ svg {
1477
+ height: 0.85rem !important;
1478
+ width: 0.85rem !important;
1479
+ }
1480
+
1481
+ sortamountupalticon svg,
1482
+ sortamountdownicon svg {
1483
+ color: var(--theme-primary) !important;
1484
+ }
1485
+ }
1486
+
1487
+ &.p-highlight {
1488
+ color: var(--theme-primary) !important;
1489
+ }
1490
+ }
1491
+ }
1492
+ }
1493
+
1494
+ .p-datatable-tbody {
1495
+ tr.p-highlight {
1496
+ background-color: #eff6ff !important;
1497
+ }
1498
+ }
1499
+
1500
+ .row {
1501
+ background: transparent !important;
1502
+
1503
+ .cell {
1504
+ white-space: normal !important;
1505
+
1506
+ .boolean-value-positive {
1507
+ color: var(--success-color);
1508
+ }
1509
+
1510
+ .boolean-value-negative {
1511
+ color: var(--error-color);
1512
+ }
1513
+
1514
+ .status-table-field {
1515
+ font-size: 1.4em;
1516
+ }
1517
+
1518
+ .table-button {
1519
+ cursor: pointer;
1520
+ color: var(--theme-primary);
1521
+ }
1522
+ }
1523
+
1524
+ .no-results {
1525
+ border-bottom-left-radius: 15px;
1526
+ border-bottom-right-radius: 15px;
1527
+ }
1528
+ }
1529
+
1530
+ .p-paginator .p-paginator-pages .p-paginator-page.p-highlight {
1531
+ color: #fff !important;
1532
+ }
1533
+
1534
+ .p-paginator-bottom {
1535
+ border-radius: 15px !important;
1536
+ }
1537
+ }
1538
+
1539
+ p-tabview {
1540
+ .p-tabpanels {
1541
+ display: none !important;
1542
+ }
1543
+
1544
+ .p-tablist .p-tab {
1545
+ justify-content: center;
1546
+
1547
+ &.p-tab-active {
1548
+ color: var(--theme-primary) !important;
1549
+ }
1550
+ }
1551
+ }
1552
+
1553
+ vector-panel p-panel .p-panel .p-panel-content {
1554
+ padding: 0px !important;
1555
+ }
1556
+ }
1557
+
1558
+ .success {
1559
+ color: var(--success-color);
1560
+ }
1561
+ .error {
1562
+ color: var(--error-color);
1563
+ }
1564
+ .warning {
1565
+ color: var(--warning-color);
1566
+ }
1567
+ .info {
1568
+ color: var(--theme-light);
1569
+ }
1570
+
1571
+ p-tabview {
1572
+ background: transparent !important;
1573
+
1574
+ .p-tabpanels,
1575
+ .p-tabpanel,
1576
+ .p-tabview-panel {
1577
+ background: transparent !important;
1578
+ }
1579
+
1580
+ .p-tablist-tab-list {
1581
+ background: none !important;
1582
+ .p-tab.p-tab-active {
1583
+ border-color: var(--theme-primary) !important;
1584
+ }
1585
+
1586
+ .p-tab {
1587
+ border-top-right-radius: 0px !important;
1588
+ border-top-left-radius: 0px !important;
1589
+ color: var(--theme-primary) !important;
1590
+
1591
+ &:hover {
1592
+ border-color: var(--theme-primary) !important;
1593
+ border-bottom-width: 2px !important;
1594
+ }
1595
+ }
1596
+ .p-tablist-active-bar {
1597
+ height: 2px !important;
1598
+ background: var(--theme-primary) !important;
1599
+ }
1600
+ }
1601
+ }
1602
+
1603
+ .p-accordion {
1604
+ .p-accordionpanel {
1605
+ margin: 20px 0;
1606
+ border: none !important;
1607
+ background: transparent !important;
1608
+ border-radius: 16px !important;
1609
+ box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.06) !important;
1610
+ overflow: hidden;
1611
+ }
1612
+
1613
+ .p-accordionheader {
1614
+ position: relative !important;
1615
+ border: none !important;
1616
+ border-radius: 0 !important;
1617
+ box-shadow: none !important;
1618
+ background: #ffffff !important;
1619
+ color: var(--theme-dark) !important;
1620
+ padding: 1.25rem 1.5rem !important;
1621
+ font-weight: 600 !important;
1622
+
1623
+ &:hover {
1624
+ background: #ffffff !important;
1625
+ color: var(--theme-dark) !important;
1626
+ }
1627
+
1628
+ &:focus,
1629
+ &:focus-visible {
1630
+ outline: none !important;
1631
+ box-shadow: none !important;
1632
+ }
1633
+ }
1634
+
1635
+ .p-accordionheader-toggle-icon {
1636
+ position: absolute !important;
1637
+ right: 1.5rem !important;
1638
+ top: 50% !important;
1639
+ left: auto !important;
1640
+ margin: 0 !important;
1641
+ color: var(--theme-dark) !important;
1642
+ transform: translateY(-50%) rotate(-90deg);
1643
+ transition: transform 0.2s ease;
1644
+ }
1645
+
1646
+ .p-accordionheader[aria-expanded='true'] .p-accordionheader-toggle-icon {
1647
+ transform: translateY(-50%) rotate(0deg);
1648
+ }
1649
+
1650
+ .p-accordioncontent {
1651
+ border: none !important;
1652
+ background: #ffffff !important;
1653
+ }
1654
+
1655
+ .p-accordioncontent-content {
1656
+ border: none !important;
1657
+ background: #ffffff !important;
1658
+ border-radius: 0 !important;
1659
+ box-shadow: none !important;
1660
+ padding: 0 1.5rem 1.5rem !important;
1661
+ color: inherit !important;
1662
+ }
1663
+ }
1664
+
1665
+ .p-chip {
1666
+ display: inline-block;
1667
+ padding: 0 16px !important;
1668
+ height: 40px;
1669
+ font-weight: 500;
1670
+ font-size: 13px;
1671
+ line-height: 40px;
1672
+ border-radius: 25px !important;
1673
+ background-color: #e5e5ea !important;
1674
+ color: #002463 !important;
1675
+ opacity: 0.5;
1676
+
1677
+ span {
1678
+ border: 2px solid;
1679
+ border-radius: 50%;
1680
+ width: 25px;
1681
+ height: 25px;
1682
+ margin-left: 5px;
1683
+ margin-top: 7px;
1684
+ color: #abaab5;
1685
+
1686
+ i {
1687
+ position: relative;
1688
+ top: -11px;
1689
+ left: -6px;
1690
+ font-size: 12px;
1691
+ }
1692
+ }
1693
+
1694
+ .closebtn {
1695
+ padding-left: 10px;
1696
+ font-weight: bold;
1697
+ float: right;
1698
+ font-size: 20px;
1699
+ cursor: pointer;
1700
+ }
1701
+
1702
+ .closebtn:hover {
1703
+ color: #000;
1704
+ }
1705
+ }
1706
+
1707
+ .p-menu.p-menu-overlay {
1708
+ width: fit-content;
1709
+ padding: 8px 0;
1710
+ border-radius: 8px;
1711
+ background-color: #ffffff !important;
1712
+ border: 1px solid #d9dbe9 !important;
1713
+ box-shadow:
1714
+ 0 1px 2px 0 rgba(31, 41, 55, 0.1),
1715
+ 0 2px 4px 0 rgba(31, 41, 55, 0.1),
1716
+ 0 4px 8px 0 rgba(31, 41, 55, 0.1),
1717
+ 0 8px 16px 0 rgba(31, 41, 55, 0.1);
1718
+
1719
+ ul {
1720
+ display: flex;
1721
+ flex-direction: column;
1722
+ max-height: 200px !important;
1723
+ overflow-y: auto;
1724
+ overflow-x: hidden;
1725
+
1726
+ &::-webkit-scrollbar {
1727
+ width: 16px;
1728
+ }
1729
+ &::-webkit-scrollbar-track {
1730
+ background: transparent;
1731
+ }
1732
+ &::-webkit-scrollbar-thumb {
1733
+ background: var(--theme-medium);
1734
+ border-radius: 10px;
1735
+ border: 5px solid transparent;
1736
+ background-clip: padding-box;
1737
+ }
1738
+
1739
+ li {
1740
+ border-radius: 4px;
1741
+ }
1742
+
1743
+ .p-menu-item-content {
1744
+ border-radius: 4px;
1745
+ background-color: transparent !important;
1746
+ }
1747
+
1748
+ .p-menu-item-link {
1749
+ border-radius: 4px;
1750
+ }
1751
+
1752
+ .p-menu-item-icon,
1753
+ .p-menu-item-label {
1754
+ color: #434560 !important;
1755
+ }
1756
+
1757
+ .p-menu-item-label {
1758
+ font-weight: 500 !important;
1759
+ }
1760
+
1761
+ .p-menu-item-content:hover,
1762
+ .p-menu-item.p-focus .p-menu-item-content {
1763
+ background-color: var(--theme-medium) !important;
1764
+
1765
+ .p-menu-item-icon,
1766
+ .p-menu-item-label {
1767
+ color: #ffffff !important;
1768
+ }
1769
+ }
1770
+ }
1771
+ }
1772
+
1773
+ .p-toggleswitch {
1774
+ flex: 0 0 auto;
1775
+ }
1776
+
1777
+ .p-toggleswitch.p-focus .p-toggleswitch-slider {
1778
+ box-shadow: none !important;
1779
+ }
1780
+
1781
+ .p-toggleswitch.p-toggleswitch-checked .p-toggleswitch-slider {
1782
+ background-color: var(--theme-primary) !important;
1783
+ }
1784
+
1785
+ .custom-field-text {
1786
+ input[type='text'],
1787
+ input[type='password'] {
1788
+ border-radius: 6px;
1789
+ color: #757b8a !important;
1790
+
1791
+ &:focus:not(.ng-invalid):not(.p-inputmask) {
1792
+ border: 2px solid #6690f3 !important;
1793
+ }
1794
+ &:not(.ng-invalid) {
1795
+ border: 2px solid #e1e4ea !important;
1796
+ }
1797
+ }
1798
+ &.input-otp {
1799
+ justify-content: center;
1800
+
1801
+ input[type='text'] {
1802
+ padding: 10px;
1803
+ min-height: 54px;
1804
+ width: 46px;
1805
+ font-size: 1.6em !important;
1806
+ font-weight: 600;
1807
+ color: #363636 !important;
1808
+
1809
+ @media screen and (max-width: 576px) {
1810
+ padding: 0;
1811
+ width: 40px;
1812
+ font-size: 1.2em !important;
1813
+ font-weight: 600;
1814
+ }
1815
+ }
1816
+ }
1817
+ &.uppercase {
1818
+ input[type='text'] {
1819
+ text-transform: uppercase;
1820
+ }
1821
+ span {
1822
+ text-transform: none;
1823
+ }
1824
+ }
1825
+ &.centered {
1826
+ input[type='text'] {
1827
+ text-align: center;
1828
+ }
1829
+ }
1830
+ &.size-lg {
1831
+ input[type='text'] {
1832
+ font-size: 1.3em !important;
1833
+ }
1834
+ }
1835
+ }
1836
+
1837
+ .vector-text {
1838
+ &.uppercase {
1839
+ input[type='text'] {
1840
+ text-transform: uppercase;
1841
+ }
1842
+ span {
1843
+ text-transform: none;
1844
+ }
1845
+ }
1846
+ }
1847
+
1848
+ .multiselect-flags {
1849
+ .p-multiselect-overlay .p-multiselect-list {
1850
+ .p-multiselect-item {
1851
+ span {
1852
+ color: #757b8a;
1853
+ }
1854
+ &:hover {
1855
+ background: #e1e4ea !important;
1856
+ }
1857
+ &:not(.p-highlight):not(.p-disabled).p-focus {
1858
+ background: #e1e4ea !important;
1859
+ }
1860
+ &.p-highlight {
1861
+ background: #e1e4ea !important;
1862
+ }
1863
+ }
1864
+ }
1865
+ }