daisyui 1.21.0 → 1.23.0
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 +30 -0
- package/README.md +7 -3
- package/dist/full.css +257 -60
- package/dist/styled.css +95 -16
- package/dist/styled.js +1 -1
- package/dist/styled.rtl.js +1 -1
- package/dist/unstyled.css +16 -2
- package/dist/unstyled.js +1 -1
- package/dist/unstyled.rtl.js +1 -1
- package/dist/utilities-unstyled.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,36 @@
|
|
|
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.23.0](https://github.com/saadeghi/daisyui/compare/v1.22.2...v1.23.0) (2022-01-15)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* add css variables to edit tab colors ([3598bd9](https://github.com/saadeghi/daisyui/commit/3598bd92282892b269a10bb89229420bc3565d80))
|
|
11
|
+
|
|
12
|
+
### [1.22.2](https://github.com/saadeghi/daisyui/compare/v1.22.1...v1.22.2) (2022-01-12)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* [#321](https://github.com/saadeghi/daisyui/issues/321) (modal overscroll-behavior) ([fc5000e](https://github.com/saadeghi/daisyui/commit/fc5000e8996f2a9d1a7a5971400f119494ebe1c7))
|
|
18
|
+
|
|
19
|
+
### [1.22.1](https://github.com/saadeghi/daisyui/compare/v1.22.0...v1.22.1) (2022-01-12)
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
### Bug Fixes
|
|
23
|
+
|
|
24
|
+
* [#394](https://github.com/saadeghi/daisyui/issues/394) prevent toggle from shrinking by default ([2676cc8](https://github.com/saadeghi/daisyui/commit/2676cc8b5fff495129f466175ccf7f9087dafb59))
|
|
25
|
+
* **breadcrumbs:** Remove the breadcrumb separator background color ([6ec8f5e](https://github.com/saadeghi/daisyui/commit/6ec8f5e92a8a113a4b0f398a6fc78eaf58f765f1))
|
|
26
|
+
|
|
27
|
+
## [1.22.0](https://github.com/saadeghi/daisyui/compare/v1.20.1...v1.22.0) (2022-01-08)
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
### Features
|
|
31
|
+
|
|
32
|
+
* add rating component (fix [#374](https://github.com/saadeghi/daisyui/issues/374)) ([6285227](https://github.com/saadeghi/daisyui/commit/6285227ffbf9818b9bc2d8be1a4a5a610ad09954))
|
|
33
|
+
* responsive table compact (fix [#364](https://github.com/saadeghi/daisyui/issues/364)) ([6e3d9b1](https://github.com/saadeghi/daisyui/commit/6e3d9b1074a3f1b02af27d102c3b13e30427f511))
|
|
34
|
+
|
|
5
35
|
## [1.21.0](https://github.com/saadeghi/daisyui/compare/v1.20.1...v1.21.0) (2022-01-01)
|
|
6
36
|
|
|
7
37
|
|
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.
|
|
82
|
+
<link href="https://cdn.jsdelivr.net/npm/daisyui@1.22.2/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
|
|
|
@@ -154,7 +154,7 @@ Read the documents for more info:
|
|
|
154
154
|
- [x] Checkbox
|
|
155
155
|
- [x] Radio
|
|
156
156
|
- [x] Range slider
|
|
157
|
-
- [
|
|
157
|
+
- [x] Rating
|
|
158
158
|
- [x] Toggle
|
|
159
159
|
- [ ] Upload
|
|
160
160
|
- [x] Hero
|
|
@@ -218,6 +218,10 @@ Read the documents for more info:
|
|
|
218
218
|
- Courses
|
|
219
219
|
- [Building with SvelteKit and GraphCMS](https://explorers.netlify.com/learn/building-with-sveltekit-and-graphcms)
|
|
220
220
|
- [Svelte for Beginners by Mike Karan](https://www.udemy.com/course/svelte-for-beginners/)
|
|
221
|
+
- [React Front To Back 2022 by Brad Traversy](https://www.udemy.com/course/react-front-to-back-2022/)
|
|
222
|
+
- [Build Instagram profile page UI clone w/Next.js TailwindCSS](https://www.udemy.com/course/build-instagram-profile-page-ui-clone-nextjs-tailwindcss/)
|
|
223
|
+
- [Instagram UI Clone Login Page w/ NextJS & TailwindCSS](https://www.udemy.com/course/instagram-ui-clone-login-page-w-nextjs-tailwindcss/)
|
|
224
|
+
- [Build your Developer Portfolio and Blog from Scratch with Svelte and GraphCMS](https://www.freecodecamp.org/news/build-your-developer-portfolio-from-scratch-with-sveltekit-and-graphcms/)
|
|
221
225
|
|
|
222
226
|
</details>
|
|
223
227
|
|
|
@@ -254,7 +258,7 @@ Read the documents for more info:
|
|
|
254
258
|
[jsdeliver-url]: https://www.jsdelivr.com/package/npm/daisyui
|
|
255
259
|
[build-url]: https://github.com/saadeghi/daisyui/actions
|
|
256
260
|
[tweet-url]: https://twitter.com/intent/tweet?text=daisyUI%20%0D%0AUI%20Components%20for%20Tailwind%20CSS%20%0D%0Ahttps://github.com/saadeghi/daisyui
|
|
257
|
-
[number-of-components]: https://badgen.net/badge/total%20components/
|
|
261
|
+
[number-of-components]: https://badgen.net/badge/total%20components/41/green
|
|
258
262
|
|
|
259
263
|
[docs-url-install]: https://daisyui.com/docs/install
|
|
260
264
|
[docs-url]: https://daisyui.com/
|
package/dist/full.css
CHANGED
|
@@ -2177,6 +2177,9 @@ html{
|
|
|
2177
2177
|
transition-duration:.15s;
|
|
2178
2178
|
transition-duration:.2s;
|
|
2179
2179
|
transition-timing-function:cubic-bezier(.4, 0, .2, 1);
|
|
2180
|
+
overflow-y:hidden;
|
|
2181
|
+
-ms-scroll-chaining:none;
|
|
2182
|
+
overscroll-behavior:contain;
|
|
2180
2183
|
}
|
|
2181
2184
|
|
|
2182
2185
|
@media (min-width:640px){
|
|
@@ -2196,6 +2199,33 @@ html{
|
|
|
2196
2199
|
}
|
|
2197
2200
|
}
|
|
2198
2201
|
|
|
2202
|
+
.modal-box{
|
|
2203
|
+
max-height:calc(100vh - 5em);
|
|
2204
|
+
--tw-bg-opacity:1;
|
|
2205
|
+
background-color:hsla(var(--b1) / var(--tw-bg-opacity, 1));
|
|
2206
|
+
padding:1.5rem;
|
|
2207
|
+
width:100%;
|
|
2208
|
+
--tw-translate-x:0;
|
|
2209
|
+
--tw-translate-y:0;
|
|
2210
|
+
--tw-translate-y:2.5rem;
|
|
2211
|
+
--tw-rotate:0;
|
|
2212
|
+
--tw-skew-x:0;
|
|
2213
|
+
--tw-skew-y:0;
|
|
2214
|
+
--tw-scale-x:1;
|
|
2215
|
+
--tw-scale-y:1;
|
|
2216
|
+
transform:translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
2217
|
+
transition-property:background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
|
|
2218
|
+
transition-duration:.15s;
|
|
2219
|
+
transition-duration:.2s;
|
|
2220
|
+
transition-timing-function:cubic-bezier(.4, 0, .2, 1);
|
|
2221
|
+
border-top-left-radius:var(--rounded-box, 1rem);
|
|
2222
|
+
border-top-right-radius:var(--rounded-box, 1rem);
|
|
2223
|
+
box-shadow:0 25px 50px -12px rgba(0, 0, 0, .25);
|
|
2224
|
+
overflow-y:auto;
|
|
2225
|
+
-ms-scroll-chaining:none;
|
|
2226
|
+
overscroll-behavior:contain;
|
|
2227
|
+
}
|
|
2228
|
+
|
|
2199
2229
|
.modal-open,.modal-toggle:checked+.modal,.modal:target{
|
|
2200
2230
|
opacity:1;
|
|
2201
2231
|
pointer-events:auto;
|
|
@@ -2273,6 +2303,24 @@ html{
|
|
|
2273
2303
|
outline:none;
|
|
2274
2304
|
}
|
|
2275
2305
|
|
|
2306
|
+
.rating{
|
|
2307
|
+
display:inline-flex;
|
|
2308
|
+
position:relative;
|
|
2309
|
+
}
|
|
2310
|
+
|
|
2311
|
+
.rating :where(input){
|
|
2312
|
+
cursor:pointer;
|
|
2313
|
+
-webkit-animation:rating-pop var(--animation-input, .25s) ease-out;
|
|
2314
|
+
animation:rating-pop var(--animation-input, .25s) ease-out;
|
|
2315
|
+
-webkit-appearance:none;
|
|
2316
|
+
-moz-appearance:none;
|
|
2317
|
+
appearance:none;
|
|
2318
|
+
background-color:hsla(var(--bc) / var(--tw-bg-opacity, 1));
|
|
2319
|
+
--tw-bg-opacity:1;
|
|
2320
|
+
height:1.5rem;
|
|
2321
|
+
width:1.5rem;
|
|
2322
|
+
}
|
|
2323
|
+
|
|
2276
2324
|
.select{
|
|
2277
2325
|
-webkit-appearance:none;
|
|
2278
2326
|
-moz-appearance:none;
|
|
@@ -2457,9 +2505,11 @@ html{
|
|
|
2457
2505
|
line-height:1.25rem;
|
|
2458
2506
|
line-height:2;
|
|
2459
2507
|
--tab-padding:1rem;
|
|
2460
|
-
--tw-text-opacity:1;
|
|
2461
2508
|
--tw-text-opacity:0.5;
|
|
2462
|
-
color:hsla(var(--bc) / var(--tw-text-opacity, 1));
|
|
2509
|
+
--tab-color:hsla(var(--bc) / var(--tw-text-opacity, 1));
|
|
2510
|
+
--tab-bg:hsla(var(--b1) / var(--tw-bg-opacity, 1));
|
|
2511
|
+
--tab-border-color:hsla(var(--b3) / var(--tw-bg-opacity, 1));
|
|
2512
|
+
color:var(--tab-color);
|
|
2463
2513
|
padding-left:var(--tab-padding, 1rem);
|
|
2464
2514
|
padding-right:var(--tab-padding, 1rem);
|
|
2465
2515
|
}
|
|
@@ -2502,6 +2552,31 @@ html{
|
|
|
2502
2552
|
box-shadow:0 0 0 2px hsl(var(--b1)), 0 0 0 4px hsla(var(--bc) / .2);
|
|
2503
2553
|
}
|
|
2504
2554
|
|
|
2555
|
+
.toggle{
|
|
2556
|
+
flex-shrink:0;
|
|
2557
|
+
--chkbg:hsla(var(--bc) / .2);
|
|
2558
|
+
--focus-shadow:0 0 0;
|
|
2559
|
+
--handleoffset:1.5rem;
|
|
2560
|
+
-webkit-appearance:none;
|
|
2561
|
+
-moz-appearance:none;
|
|
2562
|
+
appearance:none;
|
|
2563
|
+
--tw-bg-opacity:1;
|
|
2564
|
+
--tw-bg-opacity:0.2;
|
|
2565
|
+
background-color:hsla(var(--bc) / var(--tw-bg-opacity, 1));
|
|
2566
|
+
--tw-border-opacity:1;
|
|
2567
|
+
--tw-border-opacity:0.2;
|
|
2568
|
+
border-color:hsla(var(--bc) / var(--tw-border-opacity, 1));
|
|
2569
|
+
border-width:1px;
|
|
2570
|
+
cursor:pointer;
|
|
2571
|
+
height:1.5rem;
|
|
2572
|
+
width:3rem;
|
|
2573
|
+
transition-timing-function:cubic-bezier(.4, 0, .2, 1);
|
|
2574
|
+
transition-duration:.3s;
|
|
2575
|
+
border-radius:var(--rounded-badge, 1.9rem);
|
|
2576
|
+
transition:background,box-shadow var(--animation-input, .2s) ease-in-out;
|
|
2577
|
+
box-shadow:calc(var(--handleoffset)*-1) 0 0 2px hsl(var(--b1)) inset, 0 0 0 2px hsl(var(--b1)) inset, var(--focus-shadow);
|
|
2578
|
+
}
|
|
2579
|
+
|
|
2505
2580
|
.toggle:focus{
|
|
2506
2581
|
outline:2px solid transparent;
|
|
2507
2582
|
outline-offset:2px;
|
|
@@ -2755,6 +2830,7 @@ html{
|
|
|
2755
2830
|
transform:translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
2756
2831
|
border-top:1px solid;
|
|
2757
2832
|
border-right:1px solid;
|
|
2833
|
+
background-color:transparent;
|
|
2758
2834
|
}
|
|
2759
2835
|
|
|
2760
2836
|
.btn:active:focus,.btn:active:hover{
|
|
@@ -3900,29 +3976,6 @@ html{
|
|
|
3900
3976
|
margin-top:-25px;
|
|
3901
3977
|
}
|
|
3902
3978
|
|
|
3903
|
-
.modal-box{
|
|
3904
|
-
--tw-bg-opacity:1;
|
|
3905
|
-
background-color:hsla(var(--b1) / var(--tw-bg-opacity, 1));
|
|
3906
|
-
padding:1.5rem;
|
|
3907
|
-
width:100%;
|
|
3908
|
-
--tw-translate-x:0;
|
|
3909
|
-
--tw-translate-y:0;
|
|
3910
|
-
--tw-translate-y:2.5rem;
|
|
3911
|
-
--tw-rotate:0;
|
|
3912
|
-
--tw-skew-x:0;
|
|
3913
|
-
--tw-skew-y:0;
|
|
3914
|
-
--tw-scale-x:1;
|
|
3915
|
-
--tw-scale-y:1;
|
|
3916
|
-
transform:translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
3917
|
-
transition-property:background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
|
|
3918
|
-
transition-duration:.15s;
|
|
3919
|
-
transition-duration:.2s;
|
|
3920
|
-
transition-timing-function:cubic-bezier(.4, 0, .2, 1);
|
|
3921
|
-
border-top-left-radius:var(--rounded-box, 1rem);
|
|
3922
|
-
border-top-right-radius:var(--rounded-box, 1rem);
|
|
3923
|
-
box-shadow:0 25px 50px -12px rgba(0, 0, 0, .25);
|
|
3924
|
-
}
|
|
3925
|
-
|
|
3926
3979
|
.modal-open .modal-box,.modal-toggle:checked+.modal .modal-box,.modal:target .modal-box{
|
|
3927
3980
|
--tw-scale-x:1;
|
|
3928
3981
|
--tw-scale-y:1;
|
|
@@ -4227,6 +4280,57 @@ html{
|
|
|
4227
4280
|
--range-shdw:var(--a);
|
|
4228
4281
|
}
|
|
4229
4282
|
|
|
4283
|
+
.rating .rating-hidden{
|
|
4284
|
+
background-color:transparent;
|
|
4285
|
+
width:.5rem;
|
|
4286
|
+
}
|
|
4287
|
+
|
|
4288
|
+
.rating input:checked~input{
|
|
4289
|
+
--tw-bg-opacity:0.2;
|
|
4290
|
+
}
|
|
4291
|
+
|
|
4292
|
+
.rating input:focus-visible{
|
|
4293
|
+
transition-property:transform;
|
|
4294
|
+
transition-duration:.15s;
|
|
4295
|
+
transition-duration:.3s;
|
|
4296
|
+
transition-timing-function:cubic-bezier(.4, 0, .2, 1);
|
|
4297
|
+
transform:translateY(-.125em);
|
|
4298
|
+
}
|
|
4299
|
+
|
|
4300
|
+
.rating input:active:focus{
|
|
4301
|
+
-webkit-animation:none;
|
|
4302
|
+
animation:none;
|
|
4303
|
+
transform:translateY(-.125em);
|
|
4304
|
+
}
|
|
4305
|
+
|
|
4306
|
+
@-webkit-keyframes rating-pop{
|
|
4307
|
+
0%{
|
|
4308
|
+
transform:translateY(-.125em);
|
|
4309
|
+
}
|
|
4310
|
+
|
|
4311
|
+
40%{
|
|
4312
|
+
transform:translateY(-.125em);
|
|
4313
|
+
}
|
|
4314
|
+
|
|
4315
|
+
to{
|
|
4316
|
+
transform:translateY(0);
|
|
4317
|
+
}
|
|
4318
|
+
}
|
|
4319
|
+
|
|
4320
|
+
@keyframes rating-pop{
|
|
4321
|
+
0%{
|
|
4322
|
+
transform:translateY(-.125em);
|
|
4323
|
+
}
|
|
4324
|
+
|
|
4325
|
+
40%{
|
|
4326
|
+
transform:translateY(-.125em);
|
|
4327
|
+
}
|
|
4328
|
+
|
|
4329
|
+
to{
|
|
4330
|
+
transform:translateY(0);
|
|
4331
|
+
}
|
|
4332
|
+
}
|
|
4333
|
+
|
|
4230
4334
|
.select-bordered{
|
|
4231
4335
|
--tw-border-opacity:0.2;
|
|
4232
4336
|
}
|
|
@@ -4466,8 +4570,6 @@ html{
|
|
|
4466
4570
|
.tab.tab-active{
|
|
4467
4571
|
border-color:hsla(var(--bc) / var(--tw-border-opacity, 1));
|
|
4468
4572
|
--tw-border-opacity:1;
|
|
4469
|
-
--tw-text-opacity:1;
|
|
4470
|
-
color:hsla(var(--bc) / var(--tw-text-opacity, 1));
|
|
4471
4573
|
}
|
|
4472
4574
|
|
|
4473
4575
|
.tab:focus{
|
|
@@ -4491,22 +4593,21 @@ html{
|
|
|
4491
4593
|
border-top-left-radius:var(--tab-radius, .5rem);
|
|
4492
4594
|
border-top-right-radius:var(--tab-radius, .5rem);
|
|
4493
4595
|
border:0 solid transparent;
|
|
4494
|
-
border-bottom:var(--tab-border, 1px) solid
|
|
4596
|
+
border-bottom:var(--tab-border, 1px) solid var(--tab-border-color);
|
|
4495
4597
|
padding-left:var(--tab-padding, 1rem);
|
|
4496
4598
|
padding-right:var(--tab-padding, 1rem);
|
|
4497
4599
|
padding-top:var(--tab-border, 1px);
|
|
4498
4600
|
}
|
|
4499
4601
|
|
|
4500
4602
|
.tab-lifted.tab-active{
|
|
4501
|
-
--
|
|
4502
|
-
background-color:hsla(var(--b1) / var(--tw-bg-opacity, 1));
|
|
4603
|
+
background-color:var(--tab-bg);
|
|
4503
4604
|
border-left-width:var(--tab-border, 1px);
|
|
4504
4605
|
border-bottom-width:0;
|
|
4505
4606
|
border-right-width:var(--tab-border, 1px);
|
|
4506
4607
|
border-top-width:var(--tab-border, 1px);
|
|
4507
|
-
border-left-color:
|
|
4508
|
-
border-right-color:
|
|
4509
|
-
border-top-color:
|
|
4608
|
+
border-left-color:var(--tab-border-color);
|
|
4609
|
+
border-right-color:var(--tab-border-color);
|
|
4610
|
+
border-top-color:var(--tab-border-color);
|
|
4510
4611
|
padding-left:calc(var(--tab-padding, 1rem) - var(--tab-border, 1px));
|
|
4511
4612
|
padding-right:calc(var(--tab-padding, 1rem) - var(--tab-border, 1px));
|
|
4512
4613
|
padding-bottom:var(--tab-border, 1px);
|
|
@@ -4525,9 +4626,9 @@ html{
|
|
|
4525
4626
|
--tab-corner-bg:radial-gradient(
|
|
4526
4627
|
circle at var(--circle-pos),
|
|
4527
4628
|
transparent var(--tab-grad),
|
|
4528
|
-
|
|
4529
|
-
|
|
4530
|
-
|
|
4629
|
+
var(--tab-border-color) calc(var(--tab-grad) + 0.3px),
|
|
4630
|
+
var(--tab-border-color) calc(var(--tab-grad) + var(--tab-border, 1px)),
|
|
4631
|
+
var(--tab-bg) calc(var(--tab-grad) + var(--tab-border, 1px) + 0.3px)
|
|
4531
4632
|
);
|
|
4532
4633
|
}
|
|
4533
4634
|
|
|
@@ -4749,30 +4850,6 @@ html{
|
|
|
4749
4850
|
color:hsla(var(--bc) / var(--tw-placeholder-opacity, 1));
|
|
4750
4851
|
}
|
|
4751
4852
|
|
|
4752
|
-
.toggle{
|
|
4753
|
-
--chkbg:hsla(var(--bc) / .2);
|
|
4754
|
-
--focus-shadow:0 0 0;
|
|
4755
|
-
--handleoffset:1.5rem;
|
|
4756
|
-
-webkit-appearance:none;
|
|
4757
|
-
-moz-appearance:none;
|
|
4758
|
-
appearance:none;
|
|
4759
|
-
--tw-bg-opacity:1;
|
|
4760
|
-
--tw-bg-opacity:0.2;
|
|
4761
|
-
background-color:hsla(var(--bc) / var(--tw-bg-opacity, 1));
|
|
4762
|
-
--tw-border-opacity:1;
|
|
4763
|
-
--tw-border-opacity:0.2;
|
|
4764
|
-
border-color:hsla(var(--bc) / var(--tw-border-opacity, 1));
|
|
4765
|
-
border-width:1px;
|
|
4766
|
-
cursor:pointer;
|
|
4767
|
-
height:1.5rem;
|
|
4768
|
-
width:3rem;
|
|
4769
|
-
transition-timing-function:cubic-bezier(.4, 0, .2, 1);
|
|
4770
|
-
transition-duration:.3s;
|
|
4771
|
-
border-radius:var(--rounded-badge, 1.9rem);
|
|
4772
|
-
transition:background,box-shadow var(--animation-input, .2s) ease-in-out;
|
|
4773
|
-
box-shadow:calc(var(--handleoffset)*-1) 0 0 2px hsl(var(--b1)) inset, 0 0 0 2px hsl(var(--b1)) inset, var(--focus-shadow);
|
|
4774
|
-
}
|
|
4775
|
-
|
|
4776
4853
|
.toggle:focus-visible{
|
|
4777
4854
|
--focus-shadow:0 0 0 2px hsl(var(--b1)), 0 0 0 4px hsl(var(--bc));
|
|
4778
4855
|
}
|
|
@@ -9410,6 +9487,26 @@ html{
|
|
|
9410
9487
|
width:2rem;
|
|
9411
9488
|
}
|
|
9412
9489
|
|
|
9490
|
+
.rating-xs input{
|
|
9491
|
+
height:.75rem;
|
|
9492
|
+
width:.75rem;
|
|
9493
|
+
}
|
|
9494
|
+
|
|
9495
|
+
.rating-sm input{
|
|
9496
|
+
height:1rem;
|
|
9497
|
+
width:1rem;
|
|
9498
|
+
}
|
|
9499
|
+
|
|
9500
|
+
.rating-md input{
|
|
9501
|
+
height:1.5rem;
|
|
9502
|
+
width:1.5rem;
|
|
9503
|
+
}
|
|
9504
|
+
|
|
9505
|
+
.rating-lg input{
|
|
9506
|
+
height:2.5rem;
|
|
9507
|
+
width:2.5rem;
|
|
9508
|
+
}
|
|
9509
|
+
|
|
9413
9510
|
.select-md{
|
|
9414
9511
|
height:3rem;
|
|
9415
9512
|
font-size:.875rem;
|
|
@@ -14135,6 +14232,26 @@ html{
|
|
|
14135
14232
|
width:2rem;
|
|
14136
14233
|
}
|
|
14137
14234
|
|
|
14235
|
+
.sm\:rating-xs input{
|
|
14236
|
+
height:.75rem;
|
|
14237
|
+
width:.75rem;
|
|
14238
|
+
}
|
|
14239
|
+
|
|
14240
|
+
.sm\:rating-sm input{
|
|
14241
|
+
height:1rem;
|
|
14242
|
+
width:1rem;
|
|
14243
|
+
}
|
|
14244
|
+
|
|
14245
|
+
.sm\:rating-md input{
|
|
14246
|
+
height:1.5rem;
|
|
14247
|
+
width:1.5rem;
|
|
14248
|
+
}
|
|
14249
|
+
|
|
14250
|
+
.sm\:rating-lg input{
|
|
14251
|
+
height:2.5rem;
|
|
14252
|
+
width:2.5rem;
|
|
14253
|
+
}
|
|
14254
|
+
|
|
14138
14255
|
.sm\:select-md{
|
|
14139
14256
|
height:3rem;
|
|
14140
14257
|
font-size:.875rem;
|
|
@@ -18861,6 +18978,26 @@ html{
|
|
|
18861
18978
|
width:2rem;
|
|
18862
18979
|
}
|
|
18863
18980
|
|
|
18981
|
+
.md\:rating-xs input{
|
|
18982
|
+
height:.75rem;
|
|
18983
|
+
width:.75rem;
|
|
18984
|
+
}
|
|
18985
|
+
|
|
18986
|
+
.md\:rating-sm input{
|
|
18987
|
+
height:1rem;
|
|
18988
|
+
width:1rem;
|
|
18989
|
+
}
|
|
18990
|
+
|
|
18991
|
+
.md\:rating-md input{
|
|
18992
|
+
height:1.5rem;
|
|
18993
|
+
width:1.5rem;
|
|
18994
|
+
}
|
|
18995
|
+
|
|
18996
|
+
.md\:rating-lg input{
|
|
18997
|
+
height:2.5rem;
|
|
18998
|
+
width:2.5rem;
|
|
18999
|
+
}
|
|
19000
|
+
|
|
18864
19001
|
.md\:select-md{
|
|
18865
19002
|
height:3rem;
|
|
18866
19003
|
font-size:.875rem;
|
|
@@ -23587,6 +23724,26 @@ html{
|
|
|
23587
23724
|
width:2rem;
|
|
23588
23725
|
}
|
|
23589
23726
|
|
|
23727
|
+
.lg\:rating-xs input{
|
|
23728
|
+
height:.75rem;
|
|
23729
|
+
width:.75rem;
|
|
23730
|
+
}
|
|
23731
|
+
|
|
23732
|
+
.lg\:rating-sm input{
|
|
23733
|
+
height:1rem;
|
|
23734
|
+
width:1rem;
|
|
23735
|
+
}
|
|
23736
|
+
|
|
23737
|
+
.lg\:rating-md input{
|
|
23738
|
+
height:1.5rem;
|
|
23739
|
+
width:1.5rem;
|
|
23740
|
+
}
|
|
23741
|
+
|
|
23742
|
+
.lg\:rating-lg input{
|
|
23743
|
+
height:2.5rem;
|
|
23744
|
+
width:2.5rem;
|
|
23745
|
+
}
|
|
23746
|
+
|
|
23590
23747
|
.lg\:select-md{
|
|
23591
23748
|
height:3rem;
|
|
23592
23749
|
font-size:.875rem;
|
|
@@ -28313,6 +28470,26 @@ html{
|
|
|
28313
28470
|
width:2rem;
|
|
28314
28471
|
}
|
|
28315
28472
|
|
|
28473
|
+
.xl\:rating-xs input{
|
|
28474
|
+
height:.75rem;
|
|
28475
|
+
width:.75rem;
|
|
28476
|
+
}
|
|
28477
|
+
|
|
28478
|
+
.xl\:rating-sm input{
|
|
28479
|
+
height:1rem;
|
|
28480
|
+
width:1rem;
|
|
28481
|
+
}
|
|
28482
|
+
|
|
28483
|
+
.xl\:rating-md input{
|
|
28484
|
+
height:1.5rem;
|
|
28485
|
+
width:1.5rem;
|
|
28486
|
+
}
|
|
28487
|
+
|
|
28488
|
+
.xl\:rating-lg input{
|
|
28489
|
+
height:2.5rem;
|
|
28490
|
+
width:2.5rem;
|
|
28491
|
+
}
|
|
28492
|
+
|
|
28316
28493
|
.xl\:select-md{
|
|
28317
28494
|
height:3rem;
|
|
28318
28495
|
font-size:.875rem;
|
|
@@ -33039,6 +33216,26 @@ html{
|
|
|
33039
33216
|
width:2rem;
|
|
33040
33217
|
}
|
|
33041
33218
|
|
|
33219
|
+
.\32xl\:rating-xs input{
|
|
33220
|
+
height:.75rem;
|
|
33221
|
+
width:.75rem;
|
|
33222
|
+
}
|
|
33223
|
+
|
|
33224
|
+
.\32xl\:rating-sm input{
|
|
33225
|
+
height:1rem;
|
|
33226
|
+
width:1rem;
|
|
33227
|
+
}
|
|
33228
|
+
|
|
33229
|
+
.\32xl\:rating-md input{
|
|
33230
|
+
height:1.5rem;
|
|
33231
|
+
width:1.5rem;
|
|
33232
|
+
}
|
|
33233
|
+
|
|
33234
|
+
.\32xl\:rating-lg input{
|
|
33235
|
+
height:2.5rem;
|
|
33236
|
+
width:2.5rem;
|
|
33237
|
+
}
|
|
33238
|
+
|
|
33042
33239
|
.\32xl\:select-md{
|
|
33043
33240
|
height:3rem;
|
|
33044
33241
|
font-size:.875rem;
|