daisyui 4.0.4 → 4.0.6
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/full.css +6 -6
- package/dist/styled.css +6 -6
- package/dist/styled.js +1 -1
- package/dist/unstyled.css +2 -2
- package/dist/unstyled.js +1 -1
- package/package.json +1 -1
package/dist/full.css
CHANGED
|
@@ -2192,14 +2192,14 @@ html {
|
|
|
2192
2192
|
border-color: var(--fallback-b3,oklch(var(--b3)/var(--tw-border-opacity)));
|
|
2193
2193
|
border-color: color-mix(
|
|
2194
2194
|
in oklab,
|
|
2195
|
-
oklch(var(--btn-color, var(--b2)) / var(--tw-border-opacity)) 90%,
|
|
2195
|
+
oklch(var(--btn-color, var(--b2)) / var(--tw-border-opacity, 1)) 90%,
|
|
2196
2196
|
black
|
|
2197
2197
|
);
|
|
2198
2198
|
--tw-bg-opacity: 1;
|
|
2199
2199
|
background-color: var(--fallback-b3,oklch(var(--b3)/var(--tw-bg-opacity)));
|
|
2200
2200
|
background-color: color-mix(
|
|
2201
2201
|
in oklab,
|
|
2202
|
-
oklch(var(--btn-color, var(--b2)) / var(--tw-bg-opacity)) 90%,
|
|
2202
|
+
oklch(var(--btn-color, var(--b2)) / var(--tw-bg-opacity, 1)) 90%,
|
|
2203
2203
|
black
|
|
2204
2204
|
)}
|
|
2205
2205
|
@supports not (color: oklch(0 0 0)) {
|
|
@@ -2897,8 +2897,8 @@ html {
|
|
|
2897
2897
|
.tabs {
|
|
2898
2898
|
display: grid;
|
|
2899
2899
|
align-items: flex-end}
|
|
2900
|
-
.tabs-lifted:has(.tab-content[class^="rounded-"]) :first-child:not(.tab-active),
|
|
2901
|
-
.tabs-lifted:has(.tab-content[class*=" rounded-"]) :first-child:not(.tab-active) {
|
|
2900
|
+
.tabs-lifted:has(.tab-content[class^="rounded-"]) .tab:first-child:not(.tab-active),
|
|
2901
|
+
.tabs-lifted:has(.tab-content[class*=" rounded-"]) .tab:first-child:not(.tab-active) {
|
|
2902
2902
|
border-bottom-color: transparent}
|
|
2903
2903
|
.tab {
|
|
2904
2904
|
position: relative;
|
|
@@ -3248,12 +3248,12 @@ input.tab:checked + .tab-content,
|
|
|
3248
3248
|
.btn-active {
|
|
3249
3249
|
background-color: color-mix(
|
|
3250
3250
|
in oklab,
|
|
3251
|
-
oklch(var(--btn-color, var(--b3)) / var(--tw-bg-opacity)) 90%,
|
|
3251
|
+
oklch(var(--btn-color, var(--b3)) / var(--tw-bg-opacity, 1)) 90%,
|
|
3252
3252
|
black
|
|
3253
3253
|
);
|
|
3254
3254
|
border-color: color-mix(
|
|
3255
3255
|
in oklab,
|
|
3256
|
-
oklch(var(--btn-color, var(--b3)) / var(--tw-border-opacity)) 90%,
|
|
3256
|
+
oklch(var(--btn-color, var(--b3)) / var(--tw-border-opacity, 1)) 90%,
|
|
3257
3257
|
black
|
|
3258
3258
|
)}
|
|
3259
3259
|
.btn:focus-visible {
|
package/dist/styled.css
CHANGED
|
@@ -1142,8 +1142,8 @@
|
|
|
1142
1142
|
display: grid;
|
|
1143
1143
|
align-items: flex-end;
|
|
1144
1144
|
}
|
|
1145
|
-
.tabs-lifted:has(.tab-content[class^="rounded-"]) :first-child:not(.tab-active),
|
|
1146
|
-
.tabs-lifted:has(.tab-content[class*=" rounded-"]) :first-child:not(.tab-active) {
|
|
1145
|
+
.tabs-lifted:has(.tab-content[class^="rounded-"]) .tab:first-child:not(.tab-active),
|
|
1146
|
+
.tabs-lifted:has(.tab-content[class*=" rounded-"]) .tab:first-child:not(.tab-active) {
|
|
1147
1147
|
border-bottom-color: transparent;
|
|
1148
1148
|
}
|
|
1149
1149
|
.tab {
|
|
@@ -1577,12 +1577,12 @@ input.tab:checked + .tab-content,
|
|
|
1577
1577
|
background-color: var(--fallback-b3,oklch(var(--b3)/var(--tw-bg-opacity)));
|
|
1578
1578
|
background-color: color-mix(
|
|
1579
1579
|
in oklab,
|
|
1580
|
-
oklch(var(--btn-color, var(--b2)) / var(--tw-bg-opacity)) 90%,
|
|
1580
|
+
oklch(var(--btn-color, var(--b2)) / var(--tw-bg-opacity, 1)) 90%,
|
|
1581
1581
|
black
|
|
1582
1582
|
);
|
|
1583
1583
|
border-color: color-mix(
|
|
1584
1584
|
in oklab,
|
|
1585
|
-
oklch(var(--btn-color, var(--b2)) / var(--tw-border-opacity)) 90%,
|
|
1585
|
+
oklch(var(--btn-color, var(--b2)) / var(--tw-border-opacity, 1)) 90%,
|
|
1586
1586
|
black
|
|
1587
1587
|
);
|
|
1588
1588
|
}
|
|
@@ -1596,12 +1596,12 @@ input.tab:checked + .tab-content,
|
|
|
1596
1596
|
.btn-active {
|
|
1597
1597
|
background-color: color-mix(
|
|
1598
1598
|
in oklab,
|
|
1599
|
-
oklch(var(--btn-color, var(--b3)) / var(--tw-bg-opacity)) 90%,
|
|
1599
|
+
oklch(var(--btn-color, var(--b3)) / var(--tw-bg-opacity, 1)) 90%,
|
|
1600
1600
|
black
|
|
1601
1601
|
);
|
|
1602
1602
|
border-color: color-mix(
|
|
1603
1603
|
in oklab,
|
|
1604
|
-
oklch(var(--btn-color, var(--b3)) / var(--tw-border-opacity)) 90%,
|
|
1604
|
+
oklch(var(--btn-color, var(--b3)) / var(--tw-border-opacity, 1)) 90%,
|
|
1605
1605
|
black
|
|
1606
1606
|
);
|
|
1607
1607
|
}
|