daisyui 1.25.3 → 1.25.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/CHANGELOG.md +2 -0
- package/README.md +1 -1
- package/dist/full.css +17 -16
- package/dist/styled.css +6 -2
- package/dist/styled.js +1 -1
- package/dist/styled.rtl.js +1 -1
- package/dist/unstyled.css +6 -2
- package/dist/unstyled.js +1 -1
- package/dist/unstyled.rtl.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [1.25.4](https://github.com/saadeghi/daisyui/compare/v1.25.3...v1.25.4) (2022-01-25)
|
|
6
|
+
|
|
5
7
|
### [1.25.3](https://github.com/saadeghi/daisyui/compare/v1.25.2...v1.25.3) (2022-01-23)
|
|
6
8
|
|
|
7
9
|
|
package/README.md
CHANGED
|
@@ -79,7 +79,7 @@ Loading CSS files from CDN is not recommended for production. It's better to ins
|
|
|
79
79
|
|
|
80
80
|
|
|
81
81
|
```html
|
|
82
|
-
<link href="https://cdn.jsdelivr.net/npm/daisyui@1.25.
|
|
82
|
+
<link href="https://cdn.jsdelivr.net/npm/daisyui@1.25.3/dist/full.css" rel="stylesheet" type="text/css" />
|
|
83
83
|
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2/dist/tailwind.min.css" rel="stylesheet" type="text/css" />
|
|
84
84
|
```
|
|
85
85
|
|
package/dist/full.css
CHANGED
|
@@ -1451,6 +1451,23 @@ html{
|
|
|
1451
1451
|
scroll-snap-align:end;
|
|
1452
1452
|
}
|
|
1453
1453
|
|
|
1454
|
+
.checkbox{
|
|
1455
|
+
flex-shrink:0;
|
|
1456
|
+
--chkbg:var(--bc);
|
|
1457
|
+
--chkfg:var(--b1);
|
|
1458
|
+
-webkit-appearance:none;
|
|
1459
|
+
-moz-appearance:none;
|
|
1460
|
+
appearance:none;
|
|
1461
|
+
--tw-border-opacity:1;
|
|
1462
|
+
--tw-border-opacity:0.2;
|
|
1463
|
+
border-color:hsla(var(--bc) / var(--tw-border-opacity, 1));
|
|
1464
|
+
border-width:1px;
|
|
1465
|
+
cursor:pointer;
|
|
1466
|
+
height:1.5rem;
|
|
1467
|
+
width:1.5rem;
|
|
1468
|
+
border-radius:var(--rounded-btn, .5rem);
|
|
1469
|
+
}
|
|
1470
|
+
|
|
1454
1471
|
.checkbox:focus{
|
|
1455
1472
|
outline:2px solid transparent;
|
|
1456
1473
|
outline-offset:2px;
|
|
@@ -3265,22 +3282,6 @@ html{
|
|
|
3265
3282
|
display:none;
|
|
3266
3283
|
}
|
|
3267
3284
|
|
|
3268
|
-
.checkbox{
|
|
3269
|
-
--chkbg:var(--bc);
|
|
3270
|
-
--chkfg:var(--b1);
|
|
3271
|
-
-webkit-appearance:none;
|
|
3272
|
-
-moz-appearance:none;
|
|
3273
|
-
appearance:none;
|
|
3274
|
-
--tw-border-opacity:1;
|
|
3275
|
-
--tw-border-opacity:0.2;
|
|
3276
|
-
border-color:hsla(var(--bc) / var(--tw-border-opacity, 1));
|
|
3277
|
-
border-width:1px;
|
|
3278
|
-
cursor:pointer;
|
|
3279
|
-
height:1.5rem;
|
|
3280
|
-
width:1.5rem;
|
|
3281
|
-
border-radius:var(--rounded-btn, .5rem);
|
|
3282
|
-
}
|
|
3283
|
-
|
|
3284
3285
|
.checkbox:focus-visible{
|
|
3285
3286
|
box-shadow:0 0 0 2px hsl(var(--b1)), 0 0 0 4px hsl(var(--bc));
|
|
3286
3287
|
}
|
package/dist/styled.css
CHANGED
|
@@ -258,10 +258,14 @@
|
|
|
258
258
|
}
|
|
259
259
|
.carousel-end .carousel-item{
|
|
260
260
|
scroll-snap-align:end;
|
|
261
|
-
}.checkbox
|
|
261
|
+
}.checkbox{
|
|
262
|
+
flex-shrink:0;
|
|
263
|
+
}
|
|
264
|
+
.checkbox:focus{
|
|
262
265
|
outline:2px solid transparent;
|
|
263
266
|
outline-offset:2px;
|
|
264
|
-
}
|
|
267
|
+
}
|
|
268
|
+
.collapse{
|
|
265
269
|
display:grid;
|
|
266
270
|
overflow:hidden;
|
|
267
271
|
position:relative;
|