@charlesgomes/leafcode-shared-lib-react 1.0.1 → 1.0.3
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.
- package/dist/index.css +6 -13
- package/dist/styles/table.css +7 -17
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -274,15 +274,6 @@ th {
|
|
|
274
274
|
padding: 6px;
|
|
275
275
|
margin-left: 4px;
|
|
276
276
|
}
|
|
277
|
-
th:has(.p-column-filter-menu-button.p-column-filter-menu-button-active) .p-icon.p-sortable-column-icon {
|
|
278
|
-
background-color: #094394;
|
|
279
|
-
color: #ffffff !important;
|
|
280
|
-
padding: 6px;
|
|
281
|
-
margin-left: 4px;
|
|
282
|
-
width: 1.5rem;
|
|
283
|
-
height: 1.5rem;
|
|
284
|
-
border-radius: 5rem;
|
|
285
|
-
}
|
|
286
277
|
[aria-sort=ascending] .p-sortable-column-icon,
|
|
287
278
|
[aria-sort=descending] .p-sortable-column-icon {
|
|
288
279
|
background-color: #094394;
|
|
@@ -442,9 +433,6 @@ th:has(.p-column-filter-menu-button.p-column-filter-menu-button-active) .p-icon.
|
|
|
442
433
|
font-size: 13px;
|
|
443
434
|
}
|
|
444
435
|
@media (max-width: 767px) {
|
|
445
|
-
.custom-input {
|
|
446
|
-
width: 100%;
|
|
447
|
-
}
|
|
448
436
|
.p-paginator-left-content {
|
|
449
437
|
min-width: 100vw;
|
|
450
438
|
margin-bottom: 8px;
|
|
@@ -463,9 +451,14 @@ th:has(.p-column-filter-menu-button.p-column-filter-menu-button-active) .p-icon.
|
|
|
463
451
|
position: relative;
|
|
464
452
|
top: 4px !important;
|
|
465
453
|
}
|
|
454
|
+
}
|
|
455
|
+
@media (max-width: 567px) {
|
|
466
456
|
.disablePagination,
|
|
467
457
|
.paginatorLeft {
|
|
468
|
-
display:
|
|
458
|
+
display: grid;
|
|
469
459
|
gap: 1rem;
|
|
470
460
|
}
|
|
461
|
+
.custom-select {
|
|
462
|
+
min-width: 100%;
|
|
463
|
+
}
|
|
471
464
|
}
|
package/dist/styles/table.css
CHANGED
|
@@ -325,18 +325,6 @@ th {
|
|
|
325
325
|
margin-left: 4px;
|
|
326
326
|
}
|
|
327
327
|
|
|
328
|
-
/* Quando o botão de filtro está ativo, muda também a cor do ícone de ordenação */
|
|
329
|
-
th:has(.p-column-filter-menu-button.p-column-filter-menu-button-active)
|
|
330
|
-
.p-icon.p-sortable-column-icon {
|
|
331
|
-
background-color: #094394;
|
|
332
|
-
color: #ffffff !important;
|
|
333
|
-
padding: 6px;
|
|
334
|
-
margin-left: 4px;
|
|
335
|
-
width: 1.5rem;
|
|
336
|
-
height: 1.5rem;
|
|
337
|
-
border-radius: 5rem;
|
|
338
|
-
}
|
|
339
|
-
|
|
340
328
|
[aria-sort="ascending"] .p-sortable-column-icon,
|
|
341
329
|
[aria-sort="descending"] .p-sortable-column-icon {
|
|
342
330
|
background-color: #094394;
|
|
@@ -523,10 +511,6 @@ th:has(.p-column-filter-menu-button.p-column-filter-menu-button-active)
|
|
|
523
511
|
}
|
|
524
512
|
|
|
525
513
|
@media (max-width: 767px) {
|
|
526
|
-
.custom-input {
|
|
527
|
-
width: 100%;
|
|
528
|
-
}
|
|
529
|
-
|
|
530
514
|
.p-paginator-left-content {
|
|
531
515
|
min-width: 100vw;
|
|
532
516
|
margin-bottom: 8px;
|
|
@@ -548,10 +532,16 @@ th:has(.p-column-filter-menu-button.p-column-filter-menu-button-active)
|
|
|
548
532
|
position: relative;
|
|
549
533
|
top: 4px !important;
|
|
550
534
|
}
|
|
535
|
+
}
|
|
551
536
|
|
|
537
|
+
@media (max-width: 567px) {
|
|
552
538
|
.disablePagination,
|
|
553
539
|
.paginatorLeft {
|
|
554
|
-
display:
|
|
540
|
+
display: grid;
|
|
555
541
|
gap: 1rem;
|
|
556
542
|
}
|
|
543
|
+
|
|
544
|
+
.custom-select {
|
|
545
|
+
min-width: 100%;
|
|
546
|
+
}
|
|
557
547
|
}
|