daisyui 4.4.5 → 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 +5 -1
- package/dist/styled.css +9 -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
|
@@ -3949,6 +3949,10 @@ html {
|
|
|
3949
3949
|
color: var(--tab-color);
|
|
3950
3950
|
padding-inline-start: var(--tab-padding, 1rem);
|
|
3951
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}
|
|
3952
3956
|
.tab:is(input[type="radio"]):after {
|
|
3953
3957
|
--tw-content: attr(aria-label);
|
|
3954
3958
|
content: var(--tw-content)}
|
|
@@ -3956,7 +3960,7 @@ html {
|
|
|
3956
3960
|
cursor: default;
|
|
3957
3961
|
grid-column-start: span 9999}
|
|
3958
3962
|
.tab-content {
|
|
3959
|
-
grid-column: 1
|
|
3963
|
+
grid-column-start: 1;
|
|
3960
3964
|
grid-column-end: span 9999;
|
|
3961
3965
|
grid-row-start: 2;
|
|
3962
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);
|