ngx-vector-components 6.25.0 → 6.26.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 +3200 -3194
  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 +1869 -1869
  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 +79 -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 +9 -0
  34. package/package.json +1 -1
@@ -1,1869 +1,1869 @@
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-content {
1161
- box-shadow: none !important;
1162
- }
1163
-
1164
- .p-togglebutton-label,
1165
- .p-togglebutton-icon {
1166
- color: var(--brand-blue) !important;
1167
- font-weight: 600 !important;
1168
- }
1169
- }
1170
-
1171
- &:disabled,
1172
- &.p-disabled {
1173
- background-color: transparent !important;
1174
- box-shadow: none !important;
1175
-
1176
- .p-togglebutton-label,
1177
- .p-togglebutton-icon {
1178
- color: var(--gray-dark) !important;
1179
- }
1180
- }
1181
- }
1182
- }
1183
-
1184
- vector-select-button-field.is-secondary {
1185
- .p-selectbutton {
1186
- background-color: var(--brand-light) !important;
1187
- border-radius: 9999px !important;
1188
- }
1189
-
1190
- .p-togglebutton {
1191
- padding: 0 20px !important;
1192
- border-radius: 9999px !important;
1193
- }
1194
- }
1195
-
1196
- .p-multiselect-overlay:not(.has-filter) .p-multiselect-header p-checkbox::after {
1197
- content: 'Selecionar Todos';
1198
- display: inline-block;
1199
- margin-left: 0.5rem;
1200
- color: var(--theme-dark);
1201
- font-weight: 500;
1202
- white-space: nowrap;
1203
- }
1204
-
1205
- .p-multiselect-header {
1206
- .p-checkbox {
1207
- width: max-content;
1208
- }
1209
- }
1210
-
1211
- p-checkbox.rounded-checkbox,
1212
- .rounded-checkbox {
1213
- --p-checkbox-border-radius: 50%;
1214
- --p-checkbox-checked-border-radius: 50%;
1215
- }
1216
-
1217
- .rounded-checkbox .p-checkbox,
1218
- .rounded-checkbox .p-checkbox.p-checkbox-checked {
1219
- background: transparent !important;
1220
- border-radius: 50% !important;
1221
- }
1222
-
1223
- .rounded-checkbox .p-checkbox-input {
1224
- background: transparent !important;
1225
- border-radius: 50% !important;
1226
- }
1227
-
1228
- .rounded-checkbox .p-checkbox-box,
1229
- .rounded-checkbox .p-checkbox.p-checkbox-checked .p-checkbox-box {
1230
- border-radius: 50% !important;
1231
- border: none !important;
1232
- overflow: hidden !important;
1233
- }
1234
-
1235
- .rounded-checkbox .p-checkbox:not(.p-checkbox-checked) .p-checkbox-box {
1236
- background-color: var(--gray-light) !important;
1237
- }
1238
-
1239
- .rounded-checkbox .p-checkbox.p-checkbox-checked .p-checkbox-box {
1240
- background-color: var(--brand-blue) !important;
1241
- }
1242
-
1243
- p-checkbox.rounded-checkbox .p-checkbox-icon,
1244
- .rounded-checkbox .p-checkbox-icon {
1245
- font-size: 0.8em !important;
1246
- padding-top: 2px !important;
1247
- }
1248
-
1249
- .p-checkbox-box.p-highlight,
1250
- .p-checkbox.p-checkbox-checked .p-checkbox-box {
1251
- background: var(--brand-blue) !important;
1252
- border-color: var(--brand-blue) !important;
1253
- }
1254
-
1255
- .p-checkbox-box {
1256
- border-width: 2px !important;
1257
- border-color: var(--gray-dark) !important;
1258
-
1259
- &:hover:not(.p-highlight) {
1260
- border-color: var(--gray-dark) !important;
1261
- }
1262
- }
1263
-
1264
- .p-select,
1265
- .p-autocomplete {
1266
- width: 100%;
1267
- }
1268
- p-autocomplete.ng-touched.ng-invalid {
1269
- input.p-inputtext:not(.currency-input),
1270
- .p-inputtextarea {
1271
- &:not(:focus) {
1272
- border: none !important;
1273
- background-color: var(--error-color-transparent) !important;
1274
- }
1275
-
1276
- &:focus:not(.ng-invalid):not(.p-inputmask) {
1277
- border-color: var(--error-color) !important;
1278
- }
1279
- }
1280
- }
1281
-
1282
- p-autocomplete.ng-touched.ng-invalid .p-autocomplete-dropdown,
1283
- p-multiselect.ng-touched.ng-invalid .p-multiselect {
1284
- border-color: var(--error-color) !important;
1285
- background-color: var(--error-color-transparent) !important;
1286
- }
1287
-
1288
- .p-select-overlay,
1289
- .p-autocomplete-panel,
1290
- .p-multiselect-overlay {
1291
- // max-width: 250px !important;
1292
- min-width: 100%;
1293
- border: 1px solid var(--theme-dark) !important;
1294
- margin-top: -2px !important;
1295
- border-radius: var(--border-radius) !important;
1296
-
1297
- & .p-autocomplete-items,
1298
- & .p-multiselect-list {
1299
- padding-top: 0px !important;
1300
- padding-bottom: 0px !important;
1301
- padding-right: 1px !important;
1302
- }
1303
-
1304
- &::-webkit-scrollbar {
1305
- width: 5px;
1306
- }
1307
-
1308
- &::-webkit-scrollbar-track {
1309
- background: var(--gray-light);
1310
- }
1311
-
1312
- &::-webkit-scrollbar-thumb {
1313
- background: var(--theme-dark);
1314
- border-radius: 8px;
1315
- }
1316
-
1317
- &::-webkit-scrollbar-thumb:hover {
1318
- background: var(--theme-dark);
1319
- }
1320
- }
1321
-
1322
- .p-select-option,
1323
- .p-autocomplete-item,
1324
- .p-multiselect-item {
1325
- text-overflow: ellipsis;
1326
- color: var(--theme-dark) !important;
1327
-
1328
- &:hover {
1329
- background-color: var(--theme-dark) !important;
1330
- color: #ffffff !important;
1331
- }
1332
- }
1333
-
1334
- .p-select,
1335
- .p-multiselect {
1336
- border: none !important;
1337
- .p-highlight {
1338
- background-color: #ffffff !important;
1339
- }
1340
- }
1341
- .p-select-overlay .p-select-list .p-select-option.p-highlight,
1342
- .p-multiselect-overlay .p-multiselect-list .p-multiselect-item.p-highlight {
1343
- background-color: var(--theme-dark) !important;
1344
- color: #ffffff !important;
1345
- }
1346
-
1347
- .p-slider {
1348
- background-color: #01529b;
1349
- .p-slider-range {
1350
- background-color: var(--success-color) !important;
1351
- border-radius: inherit !important;
1352
- }
1353
- .p-slider-handle {
1354
- border-color: var(--success-color) !important;
1355
-
1356
- &:hover {
1357
- background-color: var(--success-color) !important;
1358
- }
1359
- &:focus {
1360
- box-shadow: unset !important;
1361
- }
1362
- }
1363
- }
1364
-
1365
- .p-fileupload {
1366
- p-messages,
1367
- p-message {
1368
- display: none !important;
1369
- }
1370
-
1371
- .p-fileupload-filelabel,
1372
- [class*='filelabel'] {
1373
- display: none !important;
1374
- }
1375
-
1376
- input[type='file'] {
1377
- position: absolute !important;
1378
- width: 1px !important;
1379
- height: 1px !important;
1380
- padding: 0 !important;
1381
- margin: 0 !important;
1382
- overflow: hidden !important;
1383
- clip: rect(0, 0, 0, 0) !important;
1384
- white-space: nowrap !important;
1385
- border: 0 !important;
1386
- opacity: 0 !important;
1387
- }
1388
-
1389
- p-button {
1390
- width: 100% !important;
1391
- background: transparent !important;
1392
- border: none !important;
1393
- box-shadow: none !important;
1394
- }
1395
-
1396
- .p-fileupload-choose-button,
1397
- .p-fileupload-choose {
1398
- background: transparent !important;
1399
- border: 1px solid var(--theme-dark) !important;
1400
- border-radius: 30px !important;
1401
- box-shadow: none !important;
1402
- color: var(--theme-dark) !important;
1403
- width: 100% !important;
1404
- padding: 0.875rem 1.5rem !important;
1405
- font-weight: 600 !important;
1406
- justify-content: center !important;
1407
- gap: 0.5rem !important;
1408
-
1409
- &:hover:not(:disabled) {
1410
- background: var(--theme-dark) !important;
1411
- border-color: var(--theme-dark) !important;
1412
- color: #ffffff !important;
1413
-
1414
- .p-button-label,
1415
- .p-button-icon {
1416
- color: #ffffff !important;
1417
- }
1418
- }
1419
-
1420
- .p-button-label {
1421
- color: inherit !important;
1422
- flex: 0 0 auto !important;
1423
- max-width: unset !important;
1424
- overflow: visible !important;
1425
- }
1426
-
1427
- .p-button-icon {
1428
- color: inherit !important;
1429
- }
1430
- }
1431
- }
1432
-
1433
- vector-data-table {
1434
- vector-panel.data-table-panel .p-panel,
1435
- vector-panel.data-table-panel .p-panel-content,
1436
- vector-panel.data-table-panel .p-panel-content > div {
1437
- border-radius: 15px !important;
1438
- }
1439
-
1440
- p-table {
1441
- .p-datatable-wrapper {
1442
- }
1443
-
1444
- .p-datatable-table {
1445
- border-radius: 15px !important;
1446
- }
1447
-
1448
- // PrimeNG 18 removeu o responsiveLayout: o .p-column-title (header embutido
1449
- // em cada celula por getCellContent) precisa ser escondido manualmente.
1450
- .p-column-title {
1451
- display: none;
1452
- }
1453
-
1454
- .p-datatable-thead {
1455
- border-radius: 15px !important;
1456
- z-index: 0 !important;
1457
-
1458
- .header {
1459
- th {
1460
- white-space: normal !important;
1461
- position: relative;
1462
- padding: 10px 10px 10px 35px !important;
1463
- background-color: var(--gray-light) !important;
1464
- color: #1f2937 !important;
1465
-
1466
- > div {
1467
- gap: 8px;
1468
- }
1469
-
1470
- &:first-child {
1471
- border-top-left-radius: 15px !important;
1472
- padding: 10px !important;
1473
- }
1474
-
1475
- &:last-child {
1476
- border-top-right-radius: 15px !important;
1477
- }
1478
-
1479
- p-sorticon {
1480
- svg {
1481
- height: 0.85rem !important;
1482
- width: 0.85rem !important;
1483
- }
1484
-
1485
- sortamountupalticon svg,
1486
- sortamountdownicon svg {
1487
- color: var(--theme-primary) !important;
1488
- }
1489
- }
1490
-
1491
- &.p-highlight {
1492
- color: var(--theme-primary) !important;
1493
- }
1494
- }
1495
- }
1496
- }
1497
-
1498
- .p-datatable-tbody {
1499
- tr.p-highlight {
1500
- background-color: #eff6ff !important;
1501
- }
1502
- }
1503
-
1504
- .row {
1505
- background: transparent !important;
1506
-
1507
- .cell {
1508
- white-space: normal !important;
1509
-
1510
- .boolean-value-positive {
1511
- color: var(--success-color);
1512
- }
1513
-
1514
- .boolean-value-negative {
1515
- color: var(--error-color);
1516
- }
1517
-
1518
- .status-table-field {
1519
- font-size: 1.4em;
1520
- }
1521
-
1522
- .table-button {
1523
- cursor: pointer;
1524
- color: var(--theme-primary);
1525
- }
1526
- }
1527
-
1528
- .no-results {
1529
- border-bottom-left-radius: 15px;
1530
- border-bottom-right-radius: 15px;
1531
- }
1532
- }
1533
-
1534
- .p-paginator .p-paginator-pages .p-paginator-page.p-highlight {
1535
- color: #fff !important;
1536
- }
1537
-
1538
- .p-paginator-bottom {
1539
- border-radius: 15px !important;
1540
- }
1541
- }
1542
-
1543
- p-tabview {
1544
- .p-tabpanels {
1545
- display: none !important;
1546
- }
1547
-
1548
- .p-tablist .p-tab {
1549
- justify-content: center;
1550
-
1551
- &.p-tab-active {
1552
- color: var(--theme-primary) !important;
1553
- }
1554
- }
1555
- }
1556
-
1557
- vector-panel p-panel .p-panel .p-panel-content {
1558
- padding: 0px !important;
1559
- }
1560
- }
1561
-
1562
- .success {
1563
- color: var(--success-color);
1564
- }
1565
- .error {
1566
- color: var(--error-color);
1567
- }
1568
- .warning {
1569
- color: var(--warning-color);
1570
- }
1571
- .info {
1572
- color: var(--theme-light);
1573
- }
1574
-
1575
- p-tabview {
1576
- background: transparent !important;
1577
-
1578
- .p-tabpanels,
1579
- .p-tabpanel,
1580
- .p-tabview-panel {
1581
- background: transparent !important;
1582
- }
1583
-
1584
- .p-tablist-tab-list {
1585
- background: none !important;
1586
- .p-tab.p-tab-active {
1587
- border-color: var(--theme-primary) !important;
1588
- }
1589
-
1590
- .p-tab {
1591
- border-top-right-radius: 0px !important;
1592
- border-top-left-radius: 0px !important;
1593
- color: var(--theme-primary) !important;
1594
-
1595
- &:hover {
1596
- border-color: var(--theme-primary) !important;
1597
- border-bottom-width: 2px !important;
1598
- }
1599
- }
1600
- .p-tablist-active-bar {
1601
- height: 2px !important;
1602
- background: var(--theme-primary) !important;
1603
- }
1604
- }
1605
- }
1606
-
1607
- .p-accordion {
1608
- .p-accordionpanel {
1609
- margin: 20px 0;
1610
- border: none !important;
1611
- background: transparent !important;
1612
- border-radius: 16px !important;
1613
- box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.06) !important;
1614
- overflow: hidden;
1615
- }
1616
-
1617
- .p-accordionheader {
1618
- position: relative !important;
1619
- border: none !important;
1620
- border-radius: 0 !important;
1621
- box-shadow: none !important;
1622
- background: #ffffff !important;
1623
- color: var(--theme-dark) !important;
1624
- padding: 1.25rem 1.5rem !important;
1625
- font-weight: 600 !important;
1626
-
1627
- &:hover {
1628
- background: #ffffff !important;
1629
- color: var(--theme-dark) !important;
1630
- }
1631
-
1632
- &:focus,
1633
- &:focus-visible {
1634
- outline: none !important;
1635
- box-shadow: none !important;
1636
- }
1637
- }
1638
-
1639
- .p-accordionheader-toggle-icon {
1640
- position: absolute !important;
1641
- right: 1.5rem !important;
1642
- top: 50% !important;
1643
- left: auto !important;
1644
- margin: 0 !important;
1645
- color: var(--theme-dark) !important;
1646
- transform: translateY(-50%) rotate(-90deg);
1647
- transition: transform 0.2s ease;
1648
- }
1649
-
1650
- .p-accordionheader[aria-expanded='true'] .p-accordionheader-toggle-icon {
1651
- transform: translateY(-50%) rotate(0deg);
1652
- }
1653
-
1654
- .p-accordioncontent {
1655
- border: none !important;
1656
- background: #ffffff !important;
1657
- }
1658
-
1659
- .p-accordioncontent-content {
1660
- border: none !important;
1661
- background: #ffffff !important;
1662
- border-radius: 0 !important;
1663
- box-shadow: none !important;
1664
- padding: 0 1.5rem 1.5rem !important;
1665
- color: inherit !important;
1666
- }
1667
- }
1668
-
1669
- .p-chip {
1670
- display: inline-block;
1671
- padding: 0 16px !important;
1672
- height: 40px;
1673
- font-weight: 500;
1674
- font-size: 13px;
1675
- line-height: 40px;
1676
- border-radius: 25px !important;
1677
- background-color: #e5e5ea !important;
1678
- color: #002463 !important;
1679
- opacity: 0.5;
1680
-
1681
- span {
1682
- border: 2px solid;
1683
- border-radius: 50%;
1684
- width: 25px;
1685
- height: 25px;
1686
- margin-left: 5px;
1687
- margin-top: 7px;
1688
- color: #abaab5;
1689
-
1690
- i {
1691
- position: relative;
1692
- top: -11px;
1693
- left: -6px;
1694
- font-size: 12px;
1695
- }
1696
- }
1697
-
1698
- .closebtn {
1699
- padding-left: 10px;
1700
- font-weight: bold;
1701
- float: right;
1702
- font-size: 20px;
1703
- cursor: pointer;
1704
- }
1705
-
1706
- .closebtn:hover {
1707
- color: #000;
1708
- }
1709
- }
1710
-
1711
- .p-menu.p-menu-overlay {
1712
- width: fit-content;
1713
- padding: 8px 0;
1714
- border-radius: 8px;
1715
- background-color: #ffffff !important;
1716
- border: 1px solid #d9dbe9 !important;
1717
- box-shadow:
1718
- 0 1px 2px 0 rgba(31, 41, 55, 0.1),
1719
- 0 2px 4px 0 rgba(31, 41, 55, 0.1),
1720
- 0 4px 8px 0 rgba(31, 41, 55, 0.1),
1721
- 0 8px 16px 0 rgba(31, 41, 55, 0.1);
1722
-
1723
- ul {
1724
- display: flex;
1725
- flex-direction: column;
1726
- max-height: 200px !important;
1727
- overflow-y: auto;
1728
- overflow-x: hidden;
1729
-
1730
- &::-webkit-scrollbar {
1731
- width: 16px;
1732
- }
1733
- &::-webkit-scrollbar-track {
1734
- background: transparent;
1735
- }
1736
- &::-webkit-scrollbar-thumb {
1737
- background: var(--theme-medium);
1738
- border-radius: 10px;
1739
- border: 5px solid transparent;
1740
- background-clip: padding-box;
1741
- }
1742
-
1743
- li {
1744
- border-radius: 4px;
1745
- }
1746
-
1747
- .p-menu-item-content {
1748
- border-radius: 4px;
1749
- background-color: transparent !important;
1750
- }
1751
-
1752
- .p-menu-item-link {
1753
- border-radius: 4px;
1754
- }
1755
-
1756
- .p-menu-item-icon,
1757
- .p-menu-item-label {
1758
- color: #434560 !important;
1759
- }
1760
-
1761
- .p-menu-item-label {
1762
- font-weight: 500 !important;
1763
- }
1764
-
1765
- .p-menu-item-content:hover,
1766
- .p-menu-item.p-focus .p-menu-item-content {
1767
- background-color: var(--theme-medium) !important;
1768
-
1769
- .p-menu-item-icon,
1770
- .p-menu-item-label {
1771
- color: #ffffff !important;
1772
- }
1773
- }
1774
- }
1775
- }
1776
-
1777
- .p-toggleswitch {
1778
- flex: 0 0 auto;
1779
- }
1780
-
1781
- .p-toggleswitch.p-focus .p-toggleswitch-slider {
1782
- box-shadow: none !important;
1783
- }
1784
-
1785
- .p-toggleswitch.p-toggleswitch-checked .p-toggleswitch-slider {
1786
- background-color: var(--theme-primary) !important;
1787
- }
1788
-
1789
- .custom-field-text {
1790
- input[type='text'],
1791
- input[type='password'] {
1792
- border-radius: 6px;
1793
- color: #757b8a !important;
1794
-
1795
- &:focus:not(.ng-invalid):not(.p-inputmask) {
1796
- border: 2px solid #6690f3 !important;
1797
- }
1798
- &:not(.ng-invalid) {
1799
- border: 2px solid #e1e4ea !important;
1800
- }
1801
- }
1802
- &.input-otp {
1803
- justify-content: center;
1804
-
1805
- input[type='text'] {
1806
- padding: 10px;
1807
- min-height: 54px;
1808
- width: 46px;
1809
- font-size: 1.6em !important;
1810
- font-weight: 600;
1811
- color: #363636 !important;
1812
-
1813
- @media screen and (max-width: 576px) {
1814
- padding: 0;
1815
- width: 40px;
1816
- font-size: 1.2em !important;
1817
- font-weight: 600;
1818
- }
1819
- }
1820
- }
1821
- &.uppercase {
1822
- input[type='text'] {
1823
- text-transform: uppercase;
1824
- }
1825
- span {
1826
- text-transform: none;
1827
- }
1828
- }
1829
- &.centered {
1830
- input[type='text'] {
1831
- text-align: center;
1832
- }
1833
- }
1834
- &.size-lg {
1835
- input[type='text'] {
1836
- font-size: 1.3em !important;
1837
- }
1838
- }
1839
- }
1840
-
1841
- .vector-text {
1842
- &.uppercase {
1843
- input[type='text'] {
1844
- text-transform: uppercase;
1845
- }
1846
- span {
1847
- text-transform: none;
1848
- }
1849
- }
1850
- }
1851
-
1852
- .multiselect-flags {
1853
- .p-multiselect-overlay .p-multiselect-list {
1854
- .p-multiselect-item {
1855
- span {
1856
- color: #757b8a;
1857
- }
1858
- &:hover {
1859
- background: #e1e4ea !important;
1860
- }
1861
- &:not(.p-highlight):not(.p-disabled).p-focus {
1862
- background: #e1e4ea !important;
1863
- }
1864
- &.p-highlight {
1865
- background: #e1e4ea !important;
1866
- }
1867
- }
1868
- }
1869
- }
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-content {
1161
+ box-shadow: none !important;
1162
+ }
1163
+
1164
+ .p-togglebutton-label,
1165
+ .p-togglebutton-icon {
1166
+ color: var(--brand-blue) !important;
1167
+ font-weight: 600 !important;
1168
+ }
1169
+ }
1170
+
1171
+ &:disabled,
1172
+ &.p-disabled {
1173
+ background-color: transparent !important;
1174
+ box-shadow: none !important;
1175
+
1176
+ .p-togglebutton-label,
1177
+ .p-togglebutton-icon {
1178
+ color: var(--gray-dark) !important;
1179
+ }
1180
+ }
1181
+ }
1182
+ }
1183
+
1184
+ vector-select-button-field.is-secondary {
1185
+ .p-selectbutton {
1186
+ background-color: var(--brand-light) !important;
1187
+ border-radius: 9999px !important;
1188
+ }
1189
+
1190
+ .p-togglebutton {
1191
+ padding: 0 20px !important;
1192
+ border-radius: 9999px !important;
1193
+ }
1194
+ }
1195
+
1196
+ .p-multiselect-overlay:not(.has-filter) .p-multiselect-header p-checkbox::after {
1197
+ content: 'Selecionar Todos';
1198
+ display: inline-block;
1199
+ margin-left: 0.5rem;
1200
+ color: var(--theme-dark);
1201
+ font-weight: 500;
1202
+ white-space: nowrap;
1203
+ }
1204
+
1205
+ .p-multiselect-header {
1206
+ .p-checkbox {
1207
+ width: max-content;
1208
+ }
1209
+ }
1210
+
1211
+ p-checkbox.rounded-checkbox,
1212
+ .rounded-checkbox {
1213
+ --p-checkbox-border-radius: 50%;
1214
+ --p-checkbox-checked-border-radius: 50%;
1215
+ }
1216
+
1217
+ .rounded-checkbox .p-checkbox,
1218
+ .rounded-checkbox .p-checkbox.p-checkbox-checked {
1219
+ background: transparent !important;
1220
+ border-radius: 50% !important;
1221
+ }
1222
+
1223
+ .rounded-checkbox .p-checkbox-input {
1224
+ background: transparent !important;
1225
+ border-radius: 50% !important;
1226
+ }
1227
+
1228
+ .rounded-checkbox .p-checkbox-box,
1229
+ .rounded-checkbox .p-checkbox.p-checkbox-checked .p-checkbox-box {
1230
+ border-radius: 50% !important;
1231
+ border: none !important;
1232
+ overflow: hidden !important;
1233
+ }
1234
+
1235
+ .rounded-checkbox .p-checkbox:not(.p-checkbox-checked) .p-checkbox-box {
1236
+ background-color: var(--gray-light) !important;
1237
+ }
1238
+
1239
+ .rounded-checkbox .p-checkbox.p-checkbox-checked .p-checkbox-box {
1240
+ background-color: var(--brand-blue) !important;
1241
+ }
1242
+
1243
+ p-checkbox.rounded-checkbox .p-checkbox-icon,
1244
+ .rounded-checkbox .p-checkbox-icon {
1245
+ font-size: 0.8em !important;
1246
+ padding-top: 2px !important;
1247
+ }
1248
+
1249
+ .p-checkbox-box.p-highlight,
1250
+ .p-checkbox.p-checkbox-checked .p-checkbox-box {
1251
+ background: var(--brand-blue) !important;
1252
+ border-color: var(--brand-blue) !important;
1253
+ }
1254
+
1255
+ .p-checkbox-box {
1256
+ border-width: 2px !important;
1257
+ border-color: var(--gray-dark) !important;
1258
+
1259
+ &:hover:not(.p-highlight) {
1260
+ border-color: var(--gray-dark) !important;
1261
+ }
1262
+ }
1263
+
1264
+ .p-select,
1265
+ .p-autocomplete {
1266
+ width: 100%;
1267
+ }
1268
+ p-autocomplete.ng-touched.ng-invalid {
1269
+ input.p-inputtext:not(.currency-input),
1270
+ .p-inputtextarea {
1271
+ &:not(:focus) {
1272
+ border: none !important;
1273
+ background-color: var(--error-color-transparent) !important;
1274
+ }
1275
+
1276
+ &:focus:not(.ng-invalid):not(.p-inputmask) {
1277
+ border-color: var(--error-color) !important;
1278
+ }
1279
+ }
1280
+ }
1281
+
1282
+ p-autocomplete.ng-touched.ng-invalid .p-autocomplete-dropdown,
1283
+ p-multiselect.ng-touched.ng-invalid .p-multiselect {
1284
+ border-color: var(--error-color) !important;
1285
+ background-color: var(--error-color-transparent) !important;
1286
+ }
1287
+
1288
+ .p-select-overlay,
1289
+ .p-autocomplete-panel,
1290
+ .p-multiselect-overlay {
1291
+ // max-width: 250px !important;
1292
+ min-width: 100%;
1293
+ border: 1px solid var(--theme-dark) !important;
1294
+ margin-top: -2px !important;
1295
+ border-radius: var(--border-radius) !important;
1296
+
1297
+ & .p-autocomplete-items,
1298
+ & .p-multiselect-list {
1299
+ padding-top: 0px !important;
1300
+ padding-bottom: 0px !important;
1301
+ padding-right: 1px !important;
1302
+ }
1303
+
1304
+ &::-webkit-scrollbar {
1305
+ width: 5px;
1306
+ }
1307
+
1308
+ &::-webkit-scrollbar-track {
1309
+ background: var(--gray-light);
1310
+ }
1311
+
1312
+ &::-webkit-scrollbar-thumb {
1313
+ background: var(--theme-dark);
1314
+ border-radius: 8px;
1315
+ }
1316
+
1317
+ &::-webkit-scrollbar-thumb:hover {
1318
+ background: var(--theme-dark);
1319
+ }
1320
+ }
1321
+
1322
+ .p-select-option,
1323
+ .p-autocomplete-item,
1324
+ .p-multiselect-item {
1325
+ text-overflow: ellipsis;
1326
+ color: var(--theme-dark) !important;
1327
+
1328
+ &:hover {
1329
+ background-color: var(--theme-dark) !important;
1330
+ color: #ffffff !important;
1331
+ }
1332
+ }
1333
+
1334
+ .p-select,
1335
+ .p-multiselect {
1336
+ border: none !important;
1337
+ .p-highlight {
1338
+ background-color: #ffffff !important;
1339
+ }
1340
+ }
1341
+ .p-select-overlay .p-select-list .p-select-option.p-highlight,
1342
+ .p-multiselect-overlay .p-multiselect-list .p-multiselect-item.p-highlight {
1343
+ background-color: var(--theme-dark) !important;
1344
+ color: #ffffff !important;
1345
+ }
1346
+
1347
+ .p-slider {
1348
+ background-color: #01529b;
1349
+ .p-slider-range {
1350
+ background-color: var(--success-color) !important;
1351
+ border-radius: inherit !important;
1352
+ }
1353
+ .p-slider-handle {
1354
+ border-color: var(--success-color) !important;
1355
+
1356
+ &:hover {
1357
+ background-color: var(--success-color) !important;
1358
+ }
1359
+ &:focus {
1360
+ box-shadow: unset !important;
1361
+ }
1362
+ }
1363
+ }
1364
+
1365
+ .p-fileupload {
1366
+ p-messages,
1367
+ p-message {
1368
+ display: none !important;
1369
+ }
1370
+
1371
+ .p-fileupload-filelabel,
1372
+ [class*='filelabel'] {
1373
+ display: none !important;
1374
+ }
1375
+
1376
+ input[type='file'] {
1377
+ position: absolute !important;
1378
+ width: 1px !important;
1379
+ height: 1px !important;
1380
+ padding: 0 !important;
1381
+ margin: 0 !important;
1382
+ overflow: hidden !important;
1383
+ clip: rect(0, 0, 0, 0) !important;
1384
+ white-space: nowrap !important;
1385
+ border: 0 !important;
1386
+ opacity: 0 !important;
1387
+ }
1388
+
1389
+ p-button {
1390
+ width: 100% !important;
1391
+ background: transparent !important;
1392
+ border: none !important;
1393
+ box-shadow: none !important;
1394
+ }
1395
+
1396
+ .p-fileupload-choose-button,
1397
+ .p-fileupload-choose {
1398
+ background: transparent !important;
1399
+ border: 1px solid var(--theme-dark) !important;
1400
+ border-radius: 30px !important;
1401
+ box-shadow: none !important;
1402
+ color: var(--theme-dark) !important;
1403
+ width: 100% !important;
1404
+ padding: 0.875rem 1.5rem !important;
1405
+ font-weight: 600 !important;
1406
+ justify-content: center !important;
1407
+ gap: 0.5rem !important;
1408
+
1409
+ &:hover:not(:disabled) {
1410
+ background: var(--theme-dark) !important;
1411
+ border-color: var(--theme-dark) !important;
1412
+ color: #ffffff !important;
1413
+
1414
+ .p-button-label,
1415
+ .p-button-icon {
1416
+ color: #ffffff !important;
1417
+ }
1418
+ }
1419
+
1420
+ .p-button-label {
1421
+ color: inherit !important;
1422
+ flex: 0 0 auto !important;
1423
+ max-width: unset !important;
1424
+ overflow: visible !important;
1425
+ }
1426
+
1427
+ .p-button-icon {
1428
+ color: inherit !important;
1429
+ }
1430
+ }
1431
+ }
1432
+
1433
+ vector-data-table {
1434
+ vector-panel.data-table-panel .p-panel,
1435
+ vector-panel.data-table-panel .p-panel-content,
1436
+ vector-panel.data-table-panel .p-panel-content > div {
1437
+ border-radius: 15px !important;
1438
+ }
1439
+
1440
+ p-table {
1441
+ .p-datatable-wrapper {
1442
+ }
1443
+
1444
+ .p-datatable-table {
1445
+ border-radius: 15px !important;
1446
+ }
1447
+
1448
+ // PrimeNG 18 removeu o responsiveLayout: o .p-column-title (header embutido
1449
+ // em cada celula por getCellContent) precisa ser escondido manualmente.
1450
+ .p-column-title {
1451
+ display: none;
1452
+ }
1453
+
1454
+ .p-datatable-thead {
1455
+ border-radius: 15px !important;
1456
+ z-index: 0 !important;
1457
+
1458
+ .header {
1459
+ th {
1460
+ white-space: normal !important;
1461
+ position: relative;
1462
+ padding: 10px 10px 10px 35px !important;
1463
+ background-color: var(--gray-light) !important;
1464
+ color: #1f2937 !important;
1465
+
1466
+ > div {
1467
+ gap: 8px;
1468
+ }
1469
+
1470
+ &:first-child {
1471
+ border-top-left-radius: 15px !important;
1472
+ padding: 10px !important;
1473
+ }
1474
+
1475
+ &:last-child {
1476
+ border-top-right-radius: 15px !important;
1477
+ }
1478
+
1479
+ p-sorticon {
1480
+ svg {
1481
+ height: 0.85rem !important;
1482
+ width: 0.85rem !important;
1483
+ }
1484
+
1485
+ sortamountupalticon svg,
1486
+ sortamountdownicon svg {
1487
+ color: var(--theme-primary) !important;
1488
+ }
1489
+ }
1490
+
1491
+ &.p-highlight {
1492
+ color: var(--theme-primary) !important;
1493
+ }
1494
+ }
1495
+ }
1496
+ }
1497
+
1498
+ .p-datatable-tbody {
1499
+ tr.p-highlight {
1500
+ background-color: #eff6ff !important;
1501
+ }
1502
+ }
1503
+
1504
+ .row {
1505
+ background: transparent !important;
1506
+
1507
+ .cell {
1508
+ white-space: normal !important;
1509
+
1510
+ .boolean-value-positive {
1511
+ color: var(--success-color);
1512
+ }
1513
+
1514
+ .boolean-value-negative {
1515
+ color: var(--error-color);
1516
+ }
1517
+
1518
+ .status-table-field {
1519
+ font-size: 1.4em;
1520
+ }
1521
+
1522
+ .table-button {
1523
+ cursor: pointer;
1524
+ color: var(--theme-primary);
1525
+ }
1526
+ }
1527
+
1528
+ .no-results {
1529
+ border-bottom-left-radius: 15px;
1530
+ border-bottom-right-radius: 15px;
1531
+ }
1532
+ }
1533
+
1534
+ .p-paginator .p-paginator-pages .p-paginator-page.p-highlight {
1535
+ color: #fff !important;
1536
+ }
1537
+
1538
+ .p-paginator-bottom {
1539
+ border-radius: 15px !important;
1540
+ }
1541
+ }
1542
+
1543
+ p-tabview {
1544
+ .p-tabpanels {
1545
+ display: none !important;
1546
+ }
1547
+
1548
+ .p-tablist .p-tab {
1549
+ justify-content: center;
1550
+
1551
+ &.p-tab-active {
1552
+ color: var(--theme-primary) !important;
1553
+ }
1554
+ }
1555
+ }
1556
+
1557
+ vector-panel p-panel .p-panel .p-panel-content {
1558
+ padding: 0px !important;
1559
+ }
1560
+ }
1561
+
1562
+ .success {
1563
+ color: var(--success-color);
1564
+ }
1565
+ .error {
1566
+ color: var(--error-color);
1567
+ }
1568
+ .warning {
1569
+ color: var(--warning-color);
1570
+ }
1571
+ .info {
1572
+ color: var(--theme-light);
1573
+ }
1574
+
1575
+ p-tabview {
1576
+ background: transparent !important;
1577
+
1578
+ .p-tabpanels,
1579
+ .p-tabpanel,
1580
+ .p-tabview-panel {
1581
+ background: transparent !important;
1582
+ }
1583
+
1584
+ .p-tablist-tab-list {
1585
+ background: none !important;
1586
+ .p-tab.p-tab-active {
1587
+ border-color: var(--theme-primary) !important;
1588
+ }
1589
+
1590
+ .p-tab {
1591
+ border-top-right-radius: 0px !important;
1592
+ border-top-left-radius: 0px !important;
1593
+ color: var(--theme-primary) !important;
1594
+
1595
+ &:hover {
1596
+ border-color: var(--theme-primary) !important;
1597
+ border-bottom-width: 2px !important;
1598
+ }
1599
+ }
1600
+ .p-tablist-active-bar {
1601
+ height: 2px !important;
1602
+ background: var(--theme-primary) !important;
1603
+ }
1604
+ }
1605
+ }
1606
+
1607
+ .p-accordion {
1608
+ .p-accordionpanel {
1609
+ margin: 20px 0;
1610
+ border: none !important;
1611
+ background: transparent !important;
1612
+ border-radius: 16px !important;
1613
+ box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.06) !important;
1614
+ overflow: hidden;
1615
+ }
1616
+
1617
+ .p-accordionheader {
1618
+ position: relative !important;
1619
+ border: none !important;
1620
+ border-radius: 0 !important;
1621
+ box-shadow: none !important;
1622
+ background: #ffffff !important;
1623
+ color: var(--theme-dark) !important;
1624
+ padding: 1.25rem 1.5rem !important;
1625
+ font-weight: 600 !important;
1626
+
1627
+ &:hover {
1628
+ background: #ffffff !important;
1629
+ color: var(--theme-dark) !important;
1630
+ }
1631
+
1632
+ &:focus,
1633
+ &:focus-visible {
1634
+ outline: none !important;
1635
+ box-shadow: none !important;
1636
+ }
1637
+ }
1638
+
1639
+ .p-accordionheader-toggle-icon {
1640
+ position: absolute !important;
1641
+ right: 1.5rem !important;
1642
+ top: 50% !important;
1643
+ left: auto !important;
1644
+ margin: 0 !important;
1645
+ color: var(--theme-dark) !important;
1646
+ transform: translateY(-50%) rotate(-90deg);
1647
+ transition: transform 0.2s ease;
1648
+ }
1649
+
1650
+ .p-accordionheader[aria-expanded='true'] .p-accordionheader-toggle-icon {
1651
+ transform: translateY(-50%) rotate(0deg);
1652
+ }
1653
+
1654
+ .p-accordioncontent {
1655
+ border: none !important;
1656
+ background: #ffffff !important;
1657
+ }
1658
+
1659
+ .p-accordioncontent-content {
1660
+ border: none !important;
1661
+ background: #ffffff !important;
1662
+ border-radius: 0 !important;
1663
+ box-shadow: none !important;
1664
+ padding: 0 1.5rem 1.5rem !important;
1665
+ color: inherit !important;
1666
+ }
1667
+ }
1668
+
1669
+ .p-chip {
1670
+ display: inline-block;
1671
+ padding: 0 16px !important;
1672
+ height: 40px;
1673
+ font-weight: 500;
1674
+ font-size: 13px;
1675
+ line-height: 40px;
1676
+ border-radius: 25px !important;
1677
+ background-color: #e5e5ea !important;
1678
+ color: #002463 !important;
1679
+ opacity: 0.5;
1680
+
1681
+ span {
1682
+ border: 2px solid;
1683
+ border-radius: 50%;
1684
+ width: 25px;
1685
+ height: 25px;
1686
+ margin-left: 5px;
1687
+ margin-top: 7px;
1688
+ color: #abaab5;
1689
+
1690
+ i {
1691
+ position: relative;
1692
+ top: -11px;
1693
+ left: -6px;
1694
+ font-size: 12px;
1695
+ }
1696
+ }
1697
+
1698
+ .closebtn {
1699
+ padding-left: 10px;
1700
+ font-weight: bold;
1701
+ float: right;
1702
+ font-size: 20px;
1703
+ cursor: pointer;
1704
+ }
1705
+
1706
+ .closebtn:hover {
1707
+ color: #000;
1708
+ }
1709
+ }
1710
+
1711
+ .p-menu.p-menu-overlay {
1712
+ width: fit-content;
1713
+ padding: 8px 0;
1714
+ border-radius: 8px;
1715
+ background-color: #ffffff !important;
1716
+ border: 1px solid #d9dbe9 !important;
1717
+ box-shadow:
1718
+ 0 1px 2px 0 rgba(31, 41, 55, 0.1),
1719
+ 0 2px 4px 0 rgba(31, 41, 55, 0.1),
1720
+ 0 4px 8px 0 rgba(31, 41, 55, 0.1),
1721
+ 0 8px 16px 0 rgba(31, 41, 55, 0.1);
1722
+
1723
+ ul {
1724
+ display: flex;
1725
+ flex-direction: column;
1726
+ max-height: 200px !important;
1727
+ overflow-y: auto;
1728
+ overflow-x: hidden;
1729
+
1730
+ &::-webkit-scrollbar {
1731
+ width: 16px;
1732
+ }
1733
+ &::-webkit-scrollbar-track {
1734
+ background: transparent;
1735
+ }
1736
+ &::-webkit-scrollbar-thumb {
1737
+ background: var(--theme-medium);
1738
+ border-radius: 10px;
1739
+ border: 5px solid transparent;
1740
+ background-clip: padding-box;
1741
+ }
1742
+
1743
+ li {
1744
+ border-radius: 4px;
1745
+ }
1746
+
1747
+ .p-menu-item-content {
1748
+ border-radius: 4px;
1749
+ background-color: transparent !important;
1750
+ }
1751
+
1752
+ .p-menu-item-link {
1753
+ border-radius: 4px;
1754
+ }
1755
+
1756
+ .p-menu-item-icon,
1757
+ .p-menu-item-label {
1758
+ color: #434560 !important;
1759
+ }
1760
+
1761
+ .p-menu-item-label {
1762
+ font-weight: 500 !important;
1763
+ }
1764
+
1765
+ .p-menu-item-content:hover,
1766
+ .p-menu-item.p-focus .p-menu-item-content {
1767
+ background-color: var(--theme-medium) !important;
1768
+
1769
+ .p-menu-item-icon,
1770
+ .p-menu-item-label {
1771
+ color: #ffffff !important;
1772
+ }
1773
+ }
1774
+ }
1775
+ }
1776
+
1777
+ .p-toggleswitch {
1778
+ flex: 0 0 auto;
1779
+ }
1780
+
1781
+ .p-toggleswitch.p-focus .p-toggleswitch-slider {
1782
+ box-shadow: none !important;
1783
+ }
1784
+
1785
+ .p-toggleswitch.p-toggleswitch-checked .p-toggleswitch-slider {
1786
+ background-color: var(--theme-primary) !important;
1787
+ }
1788
+
1789
+ .custom-field-text {
1790
+ input[type='text'],
1791
+ input[type='password'] {
1792
+ border-radius: 6px;
1793
+ color: #757b8a !important;
1794
+
1795
+ &:focus:not(.ng-invalid):not(.p-inputmask) {
1796
+ border: 2px solid #6690f3 !important;
1797
+ }
1798
+ &:not(.ng-invalid) {
1799
+ border: 2px solid #e1e4ea !important;
1800
+ }
1801
+ }
1802
+ &.input-otp {
1803
+ justify-content: center;
1804
+
1805
+ input[type='text'] {
1806
+ padding: 10px;
1807
+ min-height: 54px;
1808
+ width: 46px;
1809
+ font-size: 1.6em !important;
1810
+ font-weight: 600;
1811
+ color: #363636 !important;
1812
+
1813
+ @media screen and (max-width: 576px) {
1814
+ padding: 0;
1815
+ width: 40px;
1816
+ font-size: 1.2em !important;
1817
+ font-weight: 600;
1818
+ }
1819
+ }
1820
+ }
1821
+ &.uppercase {
1822
+ input[type='text'] {
1823
+ text-transform: uppercase;
1824
+ }
1825
+ span {
1826
+ text-transform: none;
1827
+ }
1828
+ }
1829
+ &.centered {
1830
+ input[type='text'] {
1831
+ text-align: center;
1832
+ }
1833
+ }
1834
+ &.size-lg {
1835
+ input[type='text'] {
1836
+ font-size: 1.3em !important;
1837
+ }
1838
+ }
1839
+ }
1840
+
1841
+ .vector-text {
1842
+ &.uppercase {
1843
+ input[type='text'] {
1844
+ text-transform: uppercase;
1845
+ }
1846
+ span {
1847
+ text-transform: none;
1848
+ }
1849
+ }
1850
+ }
1851
+
1852
+ .multiselect-flags {
1853
+ .p-multiselect-overlay .p-multiselect-list {
1854
+ .p-multiselect-item {
1855
+ span {
1856
+ color: #757b8a;
1857
+ }
1858
+ &:hover {
1859
+ background: #e1e4ea !important;
1860
+ }
1861
+ &:not(.p-highlight):not(.p-disabled).p-focus {
1862
+ background: #e1e4ea !important;
1863
+ }
1864
+ &.p-highlight {
1865
+ background: #e1e4ea !important;
1866
+ }
1867
+ }
1868
+ }
1869
+ }