daisyui 2.6.1 → 2.6.4
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 +40 -38
- package/dist/styled.js +1 -1
- package/dist/styled.rtl.js +1 -1
- package/dist/unstyled.css +4 -2
- package/dist/unstyled.js +1 -1
- package/dist/unstyled.rtl.js +1 -1
- package/package.json +1 -1
package/dist/styled.css
CHANGED
|
@@ -249,6 +249,7 @@
|
|
|
249
249
|
scroll-snap-align: end;
|
|
250
250
|
}
|
|
251
251
|
.checkbox {
|
|
252
|
+
flex-shrink: 0
|
|
252
253
|
}
|
|
253
254
|
.collapse {
|
|
254
255
|
position: relative;
|
|
@@ -823,7 +824,7 @@
|
|
|
823
824
|
display: flex;
|
|
824
825
|
align-items: center;
|
|
825
826
|
}
|
|
826
|
-
|
|
827
|
+
:where(.navbar > *) {
|
|
827
828
|
display: inline-flex;
|
|
828
829
|
align-items: center;
|
|
829
830
|
}
|
|
@@ -889,6 +890,7 @@
|
|
|
889
890
|
transform: rotate(calc(var(--value) * 3.6deg - 90deg)) translate(calc(var(--size) / 2 - 50%));
|
|
890
891
|
}
|
|
891
892
|
.radio {
|
|
893
|
+
flex-shrink: 0
|
|
892
894
|
}
|
|
893
895
|
.range {
|
|
894
896
|
height: 1.5rem;
|
|
@@ -1100,7 +1102,7 @@
|
|
|
1100
1102
|
min-height: 3rem
|
|
1101
1103
|
}
|
|
1102
1104
|
.toggle {
|
|
1103
|
-
|
|
1105
|
+
flex-shrink: 0
|
|
1104
1106
|
}
|
|
1105
1107
|
.tooltip {
|
|
1106
1108
|
position: relative;
|
|
@@ -2179,93 +2181,93 @@ body[dir="rtl"] .checkbox:checked,
|
|
|
2179
2181
|
padding: 1rem
|
|
2180
2182
|
}
|
|
2181
2183
|
.input {
|
|
2182
|
-
|
|
2183
|
-
|
|
2184
|
-
|
|
2185
|
-
|
|
2186
|
-
|
|
2187
|
-
|
|
2184
|
+
border-width: 1px;
|
|
2185
|
+
border-color: hsl(var(--bc) / var(--tw-border-opacity));
|
|
2186
|
+
--tw-border-opacity: 0;
|
|
2187
|
+
--tw-bg-opacity: 1;
|
|
2188
|
+
background-color: hsl(var(--b1) / var(--tw-bg-opacity));
|
|
2189
|
+
border-radius: var(--rounded-btn, 0.5rem);
|
|
2190
|
+
/* &::-webkit-calendar-picker-indicator {
|
|
2191
|
+
display: none;
|
|
2192
|
+
} */
|
|
2188
2193
|
}
|
|
2189
2194
|
.input-bordered {
|
|
2190
|
-
|
|
2195
|
+
--tw-border-opacity: 0.2;
|
|
2191
2196
|
}
|
|
2192
2197
|
.input:focus {
|
|
2193
2198
|
outline: 2px solid hsla(var(--bc) / 0.2);
|
|
2194
2199
|
outline-offset: 2px;
|
|
2195
2200
|
}
|
|
2196
2201
|
.input-ghost {
|
|
2197
|
-
|
|
2202
|
+
--tw-bg-opacity: 0.05;
|
|
2198
2203
|
}
|
|
2199
2204
|
.input-ghost:focus {
|
|
2200
|
-
|
|
2201
|
-
|
|
2202
|
-
|
|
2205
|
+
--tw-bg-opacity: 1;
|
|
2206
|
+
--tw-text-opacity: 1;
|
|
2207
|
+
color: hsl(var(--bc) / var(--tw-text-opacity));
|
|
2203
2208
|
box-shadow: none;
|
|
2204
2209
|
}
|
|
2205
2210
|
.input-primary {
|
|
2206
|
-
|
|
2207
|
-
|
|
2211
|
+
--tw-border-opacity: 1;
|
|
2212
|
+
border-color: hsl(var(--p) / var(--tw-border-opacity));
|
|
2208
2213
|
}
|
|
2209
2214
|
.input-primary:focus {
|
|
2210
2215
|
outline: 2px solid hsl(var(--p));
|
|
2211
2216
|
}
|
|
2212
2217
|
.input-secondary {
|
|
2213
|
-
|
|
2214
|
-
|
|
2218
|
+
--tw-border-opacity: 1;
|
|
2219
|
+
border-color: hsl(var(--s) / var(--tw-border-opacity));
|
|
2215
2220
|
}
|
|
2216
2221
|
.input-secondary:focus {
|
|
2217
2222
|
outline: 2px solid hsl(var(--s));
|
|
2218
2223
|
}
|
|
2219
2224
|
.input-accent {
|
|
2220
|
-
|
|
2221
|
-
|
|
2225
|
+
--tw-border-opacity: 1;
|
|
2226
|
+
border-color: hsl(var(--a) / var(--tw-border-opacity));
|
|
2222
2227
|
}
|
|
2223
2228
|
.input-accent:focus {
|
|
2224
2229
|
outline: 2px solid hsl(var(--a));
|
|
2225
2230
|
}
|
|
2226
2231
|
.input-info {
|
|
2227
|
-
|
|
2228
|
-
|
|
2232
|
+
--tw-border-opacity: 1;
|
|
2233
|
+
border-color: hsl(var(--in) / var(--tw-border-opacity));
|
|
2229
2234
|
}
|
|
2230
2235
|
.input-info:focus {
|
|
2231
2236
|
outline: 2px solid hsl(var(--in));
|
|
2232
2237
|
}
|
|
2233
2238
|
.input-success {
|
|
2234
|
-
|
|
2235
|
-
|
|
2239
|
+
--tw-border-opacity: 1;
|
|
2240
|
+
border-color: hsl(var(--su) / var(--tw-border-opacity));
|
|
2236
2241
|
}
|
|
2237
2242
|
.input-success:focus {
|
|
2238
2243
|
outline: 2px solid hsl(var(--su));
|
|
2239
2244
|
}
|
|
2240
2245
|
.input-warning {
|
|
2241
|
-
|
|
2242
|
-
|
|
2246
|
+
--tw-border-opacity: 1;
|
|
2247
|
+
border-color: hsl(var(--wa) / var(--tw-border-opacity));
|
|
2243
2248
|
}
|
|
2244
2249
|
.input-warning:focus {
|
|
2245
2250
|
outline: 2px solid hsl(var(--wa));
|
|
2246
2251
|
}
|
|
2247
2252
|
.input-error {
|
|
2248
|
-
|
|
2249
|
-
|
|
2253
|
+
--tw-border-opacity: 1;
|
|
2254
|
+
border-color: hsl(var(--er) / var(--tw-border-opacity));
|
|
2250
2255
|
}
|
|
2251
2256
|
.input-error:focus {
|
|
2252
2257
|
outline: 2px solid hsl(var(--er));
|
|
2253
2258
|
}
|
|
2254
2259
|
.input-disabled, .input[disabled] {
|
|
2255
|
-
|
|
2256
|
-
|
|
2257
|
-
|
|
2258
|
-
|
|
2259
|
-
|
|
2260
|
-
|
|
2260
|
+
cursor: not-allowed;
|
|
2261
|
+
--tw-border-opacity: 1;
|
|
2262
|
+
border-color: hsl(var(--b2, var(--b1)) / var(--tw-border-opacity));
|
|
2263
|
+
--tw-bg-opacity: 1;
|
|
2264
|
+
background-color: hsl(var(--b2, var(--b1)) / var(--tw-bg-opacity));
|
|
2265
|
+
--tw-text-opacity: 0.2;
|
|
2261
2266
|
}
|
|
2262
2267
|
.input-disabled::placeholder, .input[disabled]::placeholder {
|
|
2263
|
-
|
|
2264
|
-
|
|
2268
|
+
color: hsl(var(--bc) / var(--tw-placeholder-opacity));
|
|
2269
|
+
--tw-placeholder-opacity: 0.2;
|
|
2265
2270
|
}
|
|
2266
|
-
.input::-webkit-calendar-picker-indicator {
|
|
2267
|
-
display: none;
|
|
2268
|
-
}
|
|
2269
2271
|
.kbd {
|
|
2270
2272
|
border-width: 1px;
|
|
2271
2273
|
border-color: hsl(var(--nf, var(--n)) / var(--tw-border-opacity));
|