daisyui 2.51.6 → 2.52.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 +10 -7
- package/dist/styled.js +1 -1
- package/dist/styled.rtl.js +1 -1
- package/dist/themes.css +6 -0
- package/dist/unstyled.css +1 -1
- package/dist/unstyled.js +1 -1
- package/dist/unstyled.rtl.js +1 -1
- package/dist/utilities-styled.js +1 -1
- package/package.json +1 -1
package/dist/styled.css
CHANGED
|
@@ -1269,7 +1269,7 @@
|
|
|
1269
1269
|
.tooltip:before {
|
|
1270
1270
|
position: absolute;
|
|
1271
1271
|
pointer-events: none;
|
|
1272
|
-
z-index:
|
|
1272
|
+
z-index: 999;
|
|
1273
1273
|
content: var(--tw-content);
|
|
1274
1274
|
--tw-content: attr(data-tip);
|
|
1275
1275
|
}
|
|
@@ -1690,6 +1690,9 @@
|
|
|
1690
1690
|
.btn:active:hover,
|
|
1691
1691
|
.btn:active:focus {
|
|
1692
1692
|
animation: none;
|
|
1693
|
+
}
|
|
1694
|
+
.btn:not(.no-animation):active:hover,
|
|
1695
|
+
.btn:not(.no-animation):active:focus {
|
|
1693
1696
|
transform: scale(var(--btn-focus-scale, 0.95));
|
|
1694
1697
|
}
|
|
1695
1698
|
/* default btn */
|
|
@@ -3583,7 +3586,6 @@
|
|
|
3583
3586
|
border-width: 1px;
|
|
3584
3587
|
border-color: hsl(var(--bc) / var(--tw-border-opacity));
|
|
3585
3588
|
--tw-border-opacity: 0.2;
|
|
3586
|
-
transition: background, box-shadow var(--animation-input, 0.2s) ease-in-out;
|
|
3587
3589
|
}
|
|
3588
3590
|
.radio:focus-visible {
|
|
3589
3591
|
outline: 2px solid hsl(var(--bc));
|
|
@@ -4408,20 +4410,21 @@
|
|
|
4408
4410
|
}
|
|
4409
4411
|
|
|
4410
4412
|
:where(.table *:first-child) :where(*:first-child) :where(th, td):first-child {
|
|
4411
|
-
border-top-left-radius:
|
|
4413
|
+
border-top-left-radius: var(--rounded-box, 1rem)
|
|
4412
4414
|
}
|
|
4413
4415
|
|
|
4414
4416
|
:where(.table *:first-child) :where(*:first-child) :where(th, td):last-child {
|
|
4415
|
-
border-top-right-radius:
|
|
4417
|
+
border-top-right-radius: var(--rounded-box, 1rem)
|
|
4416
4418
|
}
|
|
4417
4419
|
|
|
4418
4420
|
:where(.table *:last-child) :where(*:last-child) :where(th, td):first-child {
|
|
4419
|
-
border-bottom-left-radius:
|
|
4421
|
+
border-bottom-left-radius: var(--rounded-box, 1rem)
|
|
4420
4422
|
}
|
|
4421
4423
|
|
|
4422
4424
|
:where(.table *:last-child) :where(*:last-child) :where(th, td):last-child {
|
|
4423
|
-
border-bottom-right-radius:
|
|
4424
|
-
}
|
|
4425
|
+
border-bottom-right-radius: var(--rounded-box, 1rem)
|
|
4426
|
+
}
|
|
4427
|
+
.textarea {
|
|
4425
4428
|
border-width: 1px;
|
|
4426
4429
|
border-color: hsl(var(--bc) / var(--tw-border-opacity));
|
|
4427
4430
|
--tw-border-opacity: 0;
|