daisyui 4.4.4 → 4.4.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 +8 -1
- package/dist/styled.css +14 -4
- package/dist/styled.js +1 -1
- package/dist/unstyled.css +9 -4
- package/dist/unstyled.js +1 -1
- package/package.json +1 -1
package/dist/full.css
CHANGED
|
@@ -3306,6 +3306,9 @@ html {
|
|
|
3306
3306
|
cursor: pointer;
|
|
3307
3307
|
outline: 2px solid transparent;
|
|
3308
3308
|
outline-offset: 2px}
|
|
3309
|
+
@supports (color: oklch(0 0 0)) {
|
|
3310
|
+
:where(.menu li:not(.menu-title):not(.disabled) > *:not(ul):not(details):not(.menu-title)):not(.active):hover, :where(.menu li:not(.menu-title):not(.disabled) > details > summary:not(.menu-title)):not(.active):hover {
|
|
3311
|
+
background-color: var(--fallback-bc,oklch(var(--bc)/0.1))}}
|
|
3309
3312
|
.tab[disabled],
|
|
3310
3313
|
.tab[disabled]:hover {
|
|
3311
3314
|
cursor: not-allowed;
|
|
@@ -3946,6 +3949,10 @@ html {
|
|
|
3946
3949
|
color: var(--tab-color);
|
|
3947
3950
|
padding-inline-start: var(--tab-padding, 1rem);
|
|
3948
3951
|
padding-inline-end: var(--tab-padding, 1rem)}
|
|
3952
|
+
.tab:is(input[type="radio"]) {
|
|
3953
|
+
width: auto;
|
|
3954
|
+
border-bottom-right-radius: 0px;
|
|
3955
|
+
border-bottom-left-radius: 0px}
|
|
3949
3956
|
.tab:is(input[type="radio"]):after {
|
|
3950
3957
|
--tw-content: attr(aria-label);
|
|
3951
3958
|
content: var(--tw-content)}
|
|
@@ -3953,7 +3960,7 @@ html {
|
|
|
3953
3960
|
cursor: default;
|
|
3954
3961
|
grid-column-start: span 9999}
|
|
3955
3962
|
.tab-content {
|
|
3956
|
-
grid-column: 1
|
|
3963
|
+
grid-column-start: 1;
|
|
3957
3964
|
grid-column-end: span 9999;
|
|
3958
3965
|
grid-row-start: 2;
|
|
3959
3966
|
margin-top: calc(var(--tab-border) * -1);
|
package/dist/styled.css
CHANGED
|
@@ -1163,16 +1163,21 @@
|
|
|
1163
1163
|
line-height: 2;
|
|
1164
1164
|
--tab-padding: 1rem;
|
|
1165
1165
|
}
|
|
1166
|
+
.tab:is(input[type="radio"]) {
|
|
1167
|
+
width: auto;
|
|
1168
|
+
border-bottom-right-radius: 0px;
|
|
1169
|
+
border-bottom-left-radius: 0px;
|
|
1170
|
+
}
|
|
1166
1171
|
.tab:is(input[type="radio"]):after {
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
|
|
1172
|
+
--tw-content: attr(aria-label);
|
|
1173
|
+
content: var(--tw-content);
|
|
1174
|
+
}
|
|
1170
1175
|
.tab:not(input):empty {
|
|
1171
1176
|
cursor: default;
|
|
1172
1177
|
grid-column-start: span 9999;
|
|
1173
1178
|
}
|
|
1174
1179
|
.tab-content {
|
|
1175
|
-
grid-column: 1
|
|
1180
|
+
grid-column-start: 1;
|
|
1176
1181
|
grid-column-end: span 9999;
|
|
1177
1182
|
grid-row-start: 2;
|
|
1178
1183
|
margin-top: calc(var(--tab-border) * -1);
|
|
@@ -3263,6 +3268,11 @@ details.collapse summary {
|
|
|
3263
3268
|
outline: 2px solid transparent;
|
|
3264
3269
|
outline-offset: 2px;
|
|
3265
3270
|
}
|
|
3271
|
+
@supports (color: oklch(0 0 0)) {
|
|
3272
|
+
:where(.menu li:not(.menu-title):not(.disabled) > *:not(ul):not(details):not(.menu-title)):not(.active):hover, :where(.menu li:not(.menu-title):not(.disabled) > details > summary:not(.menu-title)):not(.active):hover {
|
|
3273
|
+
background-color: var(--fallback-bc,oklch(var(--bc)/0.1));
|
|
3274
|
+
}
|
|
3275
|
+
}
|
|
3266
3276
|
}
|
|
3267
3277
|
.menu li > *:not(ul):not(.menu-title):not(details):active,
|
|
3268
3278
|
.menu li > *:not(ul):not(.menu-title):not(details).active,
|