daisyui 2.7.0 → 2.8.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.
- package/README.md +1 -1
- package/dist/full.css +1 -1
- package/dist/styled.css +8 -15
- package/dist/styled.js +1 -1
- package/dist/styled.rtl.js +1 -1
- package/package.json +1 -1
package/dist/styled.css
CHANGED
|
@@ -3502,28 +3502,21 @@ body[dir="rtl"] .checkbox:checked,
|
|
|
3502
3502
|
font-weight: 700;
|
|
3503
3503
|
text-transform: uppercase
|
|
3504
3504
|
}
|
|
3505
|
-
.table :where(
|
|
3506
|
-
border-top-left-radius: 0.5rem
|
|
3505
|
+
.table :where(:first-child) :where(:first-child) :where(th, td):first-child {
|
|
3506
|
+
border-top-left-radius: 0.5rem
|
|
3507
|
+
}
|
|
3508
|
+
.table :where(:first-child) :where(:first-child) :where(th, td):last-child {
|
|
3509
|
+
border-top-right-radius: 0.5rem
|
|
3510
|
+
}
|
|
3511
|
+
.table :where(:last-child) :where(:last-child) :where(th, td):first-child {
|
|
3507
3512
|
border-bottom-left-radius: 0.5rem
|
|
3508
3513
|
}
|
|
3509
|
-
.table :where(
|
|
3510
|
-
border-top-right-radius: 0.5rem;
|
|
3514
|
+
.table :where(:last-child) :where(:last-child) :where(th, td):last-child {
|
|
3511
3515
|
border-bottom-right-radius: 0.5rem
|
|
3512
3516
|
}
|
|
3513
|
-
/* th:first-child{
|
|
3514
|
-
box-shadow: -1px 0 hsl(var(--b2, 210 20% 98%)) inset;
|
|
3515
|
-
} */
|
|
3516
3517
|
.table :where(tbody th, tbody td) {
|
|
3517
3518
|
--tw-bg-opacity: 1;
|
|
3518
3519
|
background-color: hsl(var(--b1) / var(--tw-bg-opacity))
|
|
3519
|
-
}
|
|
3520
|
-
.table-zebra tbody tr th:first-child, .table-zebra tbody tr td:first-child {
|
|
3521
|
-
border-top-left-radius: 0.5rem;
|
|
3522
|
-
border-bottom-left-radius: 0.5rem
|
|
3523
|
-
}
|
|
3524
|
-
.table-zebra tbody tr th:last-child, .table-zebra tbody tr td:last-child {
|
|
3525
|
-
border-top-right-radius: 0.5rem;
|
|
3526
|
-
border-bottom-right-radius: 0.5rem
|
|
3527
3520
|
}
|
|
3528
3521
|
.table-zebra tbody tr:nth-child(even) th, .table-zebra tbody tr:nth-child(even) td {
|
|
3529
3522
|
--tw-bg-opacity: 1;
|