daisyui 1.23.0 → 1.24.2
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 +23 -0
- package/README.md +1 -1
- package/dist/full.css +271 -14
- package/dist/styled.css +23 -13
- package/dist/styled.js +1 -1
- package/dist/styled.rtl.js +1 -1
- package/dist/unstyled.css +8 -2
- package/dist/unstyled.js +1 -1
- package/dist/unstyled.rtl.js +1 -1
- package/dist/utilities-styled.js +1 -1
- package/dist/utilities-unstyled.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,29 @@
|
|
|
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.24.2](https://github.com/saadeghi/daisyui/compare/v1.24.1...v1.24.2) (2022-01-17)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* [#351](https://github.com/saadeghi/daisyui/issues/351) (apply menu item style to `button` like `a` and `span`) ([87f079f](https://github.com/saadeghi/daisyui/commit/87f079fc925092d39a177154b2d8d5529787b9dd))
|
|
11
|
+
|
|
12
|
+
### [1.24.1](https://github.com/saadeghi/daisyui/compare/v1.24.0...v1.24.1) (2022-01-17)
|
|
13
|
+
|
|
14
|
+
## [1.24.0](https://github.com/saadeghi/daisyui/compare/v1.23.1...v1.24.0) (2022-01-17)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
* add responsive classes for `menu` ,fix: [#392](https://github.com/saadeghi/daisyui/issues/392) ([f825aea](https://github.com/saadeghi/daisyui/commit/f825aeab7fed82130e639e713d3de5707233ac02))
|
|
20
|
+
|
|
21
|
+
### [1.23.1](https://github.com/saadeghi/daisyui/compare/v1.23.0...v1.23.1) (2022-01-17)
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
### Bug Fixes
|
|
25
|
+
|
|
26
|
+
* card-side css property ([9908352](https://github.com/saadeghi/daisyui/commit/9908352d932fa458762c7b4815563e54583401d5))
|
|
27
|
+
|
|
5
28
|
## [1.23.0](https://github.com/saadeghi/daisyui/compare/v1.22.2...v1.23.0) (2022-01-15)
|
|
6
29
|
|
|
7
30
|
|
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.24.1/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
|
@@ -2100,9 +2100,11 @@ html{
|
|
|
2100
2100
|
align-items:stretch;
|
|
2101
2101
|
}
|
|
2102
2102
|
|
|
2103
|
-
.menu :where(li)>a,.menu :where(li)>span{
|
|
2103
|
+
.menu :where(li)>a,.menu :where(li)>button,.menu :where(li)>span{
|
|
2104
2104
|
display:flex;
|
|
2105
2105
|
align-items:center;
|
|
2106
|
+
outline:2px solid transparent;
|
|
2107
|
+
outline-offset:2px;
|
|
2106
2108
|
transition-property:background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
|
|
2107
2109
|
transition-duration:.15s;
|
|
2108
2110
|
transition-duration:.2s;
|
|
@@ -2111,6 +2113,10 @@ html{
|
|
|
2111
2113
|
|
|
2112
2114
|
.menu :where(li)>a{
|
|
2113
2115
|
cursor:pointer;
|
|
2116
|
+
-webkit-user-select:none;
|
|
2117
|
+
-moz-user-select:none;
|
|
2118
|
+
-ms-user-select:none;
|
|
2119
|
+
user-select:none;
|
|
2114
2120
|
}
|
|
2115
2121
|
|
|
2116
2122
|
.menu :where(li)>a:focus{
|
|
@@ -2118,7 +2124,7 @@ html{
|
|
|
2118
2124
|
outline-offset:2px;
|
|
2119
2125
|
}
|
|
2120
2126
|
|
|
2121
|
-
.menu :where(li).disabled>a,.menu :where(li).disabled>span{
|
|
2127
|
+
.menu :where(li).disabled>a,.menu :where(li).disabled>button,.menu :where(li).disabled>span{
|
|
2122
2128
|
cursor:auto;
|
|
2123
2129
|
}
|
|
2124
2130
|
|
|
@@ -3813,7 +3819,7 @@ html{
|
|
|
3813
3819
|
mask-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTUwIiBoZWlnaHQ9IjE3NCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNLjYzMSA4Ny4xMDdMLjQ0Ni41MDVsNzQuMjM5IDQzLjQ2MiA3NC40MjIgNDMuMTQtNzQuNDIyIDQzLjE0TC40NDYgMTczLjcxeiIgZmlsbC1ydWxlPSJldmVub2RkIi8+PC9zdmc+);
|
|
3814
3820
|
}
|
|
3815
3821
|
|
|
3816
|
-
.menu.horizontal li.bordered>a,.menu.horizontal li.bordered>span{
|
|
3822
|
+
.menu.horizontal li.bordered>a,.menu.horizontal li.bordered>button,.menu.horizontal li.bordered>span{
|
|
3817
3823
|
--tw-border-opacity:1;
|
|
3818
3824
|
border-color:hsla(var(--p) / var(--tw-border-opacity, 1));
|
|
3819
3825
|
border-left-width:0;
|
|
@@ -3824,12 +3830,18 @@ html{
|
|
|
3824
3830
|
border-radius:var(--rounded-btn, .5rem);
|
|
3825
3831
|
}
|
|
3826
3832
|
|
|
3827
|
-
.menu
|
|
3833
|
+
.menu :where(li.bordered>a),.menu :where(li.bordered>button),.menu :where(li.bordered>span){
|
|
3834
|
+
--tw-border-opacity:1;
|
|
3835
|
+
border-color:hsla(var(--p) / var(--tw-border-opacity, 1));
|
|
3836
|
+
border-left-width:4px;
|
|
3837
|
+
}
|
|
3838
|
+
|
|
3839
|
+
.menu li>:where(a),.menu li>:where(button),.menu li>:where(span){
|
|
3828
3840
|
padding:.75rem 1.25rem;
|
|
3829
3841
|
color:currentColor;
|
|
3830
3842
|
}
|
|
3831
3843
|
|
|
3832
|
-
.menu li>:where(a:focus),.menu li>:where(a:hover){
|
|
3844
|
+
.menu li>:where(a:focus),.menu li>:where(a:hover),.menu li>:where(button:focus),.menu li>:where(button:hover){
|
|
3833
3845
|
--tw-bg-opacity:1;
|
|
3834
3846
|
--tw-bg-opacity:0.1;
|
|
3835
3847
|
background-color:hsla(var(--bc) / var(--tw-bg-opacity, 1));
|
|
@@ -3842,29 +3854,23 @@ html{
|
|
|
3842
3854
|
color:hsla(var(--pc) / var(--tw-text-opacity, 1));
|
|
3843
3855
|
}
|
|
3844
3856
|
|
|
3845
|
-
.menu li>:where(a:active){
|
|
3857
|
+
.menu li>:where(a:active),.menu li>:where(button:active){
|
|
3846
3858
|
--tw-bg-opacity:1;
|
|
3847
3859
|
background-color:hsla(var(--pf) / var(--tw-bg-opacity, 1));
|
|
3848
3860
|
--tw-text-opacity:1;
|
|
3849
3861
|
color:hsla(var(--pc) / var(--tw-text-opacity, 1));
|
|
3850
3862
|
}
|
|
3851
3863
|
|
|
3852
|
-
.menu li.disabled>a:hover,.menu li.disabled>span:hover{
|
|
3864
|
+
.menu li.disabled>a:hover,.menu li.disabled>button:hover,.menu li.disabled>span:hover{
|
|
3853
3865
|
background-color:transparent;
|
|
3854
3866
|
}
|
|
3855
3867
|
|
|
3856
|
-
.menu li.disabled>a,.menu li.disabled>span{
|
|
3868
|
+
.menu li.disabled>a,.menu li.disabled>button,.menu li.disabled>span{
|
|
3857
3869
|
--tw-text-opacity:1;
|
|
3858
3870
|
--tw-text-opacity:0.2;
|
|
3859
3871
|
color:hsla(var(--bc) / var(--tw-text-opacity, 1));
|
|
3860
3872
|
}
|
|
3861
3873
|
|
|
3862
|
-
.menu li.bordered a,.menu li.bordered span{
|
|
3863
|
-
--tw-border-opacity:1;
|
|
3864
|
-
border-color:hsla(var(--p) / var(--tw-border-opacity, 1));
|
|
3865
|
-
border-left-width:4px;
|
|
3866
|
-
}
|
|
3867
|
-
|
|
3868
3874
|
.menu li.hover-bordered a{
|
|
3869
3875
|
border-color:transparent;
|
|
3870
3876
|
border-left-width:4px;
|
|
@@ -4426,6 +4432,11 @@ html{
|
|
|
4426
4432
|
color:hsla(var(--bc) / var(--tw-placeholder-opacity, 1));
|
|
4427
4433
|
}
|
|
4428
4434
|
|
|
4435
|
+
.select-multiple,.select[multiple],.select[size].select:not([size="1"]){
|
|
4436
|
+
background-image:none;
|
|
4437
|
+
padding-right:1rem;
|
|
4438
|
+
}
|
|
4439
|
+
|
|
4429
4440
|
.stat+.stat{
|
|
4430
4441
|
--tw-border-opacity:1;
|
|
4431
4442
|
--tw-border-opacity:0.1;
|
|
@@ -9379,6 +9390,23 @@ html{
|
|
|
9379
9390
|
min-width:2.5em;
|
|
9380
9391
|
}
|
|
9381
9392
|
|
|
9393
|
+
.menu-vertical{
|
|
9394
|
+
flex-direction:column;
|
|
9395
|
+
}
|
|
9396
|
+
|
|
9397
|
+
.menu-vertical :where(li){
|
|
9398
|
+
flex-direction:column;
|
|
9399
|
+
}
|
|
9400
|
+
|
|
9401
|
+
.menu-horizontal{
|
|
9402
|
+
display:inline-flex;
|
|
9403
|
+
flex-direction:row;
|
|
9404
|
+
}
|
|
9405
|
+
|
|
9406
|
+
.menu-horizontal :where(li){
|
|
9407
|
+
flex-direction:row;
|
|
9408
|
+
}
|
|
9409
|
+
|
|
9382
9410
|
.radio-xs{
|
|
9383
9411
|
height:1rem;
|
|
9384
9412
|
width:1rem;
|
|
@@ -9840,6 +9868,30 @@ html{
|
|
|
9840
9868
|
margin-top:1rem;
|
|
9841
9869
|
}
|
|
9842
9870
|
|
|
9871
|
+
.menu-vertical :where(li.bordered>a),.menu-vertical :where(li.bordered>button),.menu-vertical :where(li.bordered>span){
|
|
9872
|
+
border-bottom-width:0;
|
|
9873
|
+
border-left-width:4px;
|
|
9874
|
+
}
|
|
9875
|
+
|
|
9876
|
+
.menu-horizontal :where(li.bordered>a),.menu-horizontal :where(li.bordered>button),.menu-horizontal :where(li.bordered>span){
|
|
9877
|
+
border-left-width:0;
|
|
9878
|
+
border-bottom-width:4px;
|
|
9879
|
+
}
|
|
9880
|
+
|
|
9881
|
+
.menu-normal :where(li>a),.menu-normal :where(li>button),.menu-normal :where(li>span){
|
|
9882
|
+
font-size:1rem;
|
|
9883
|
+
line-height:1.5rem;
|
|
9884
|
+
padding-top:.75rem;
|
|
9885
|
+
padding-bottom:.75rem;
|
|
9886
|
+
}
|
|
9887
|
+
|
|
9888
|
+
.menu-compact :where(li>a),.menu-compact :where(li>button),.menu-compact :where(li>span){
|
|
9889
|
+
font-size:.875rem;
|
|
9890
|
+
line-height:1.25rem;
|
|
9891
|
+
padding-top:.5rem;
|
|
9892
|
+
padding-bottom:.5rem;
|
|
9893
|
+
}
|
|
9894
|
+
|
|
9843
9895
|
.steps-horizontal [class~=step]{
|
|
9844
9896
|
grid-template-rows:40px 1fr;
|
|
9845
9897
|
grid-template-columns:auto;
|
|
@@ -14124,6 +14176,23 @@ html{
|
|
|
14124
14176
|
min-width:2.5em;
|
|
14125
14177
|
}
|
|
14126
14178
|
|
|
14179
|
+
.sm\:menu-vertical{
|
|
14180
|
+
flex-direction:column;
|
|
14181
|
+
}
|
|
14182
|
+
|
|
14183
|
+
.sm\:menu-vertical :where(li){
|
|
14184
|
+
flex-direction:column;
|
|
14185
|
+
}
|
|
14186
|
+
|
|
14187
|
+
.sm\:menu-horizontal{
|
|
14188
|
+
display:inline-flex;
|
|
14189
|
+
flex-direction:row;
|
|
14190
|
+
}
|
|
14191
|
+
|
|
14192
|
+
.sm\:menu-horizontal :where(li){
|
|
14193
|
+
flex-direction:row;
|
|
14194
|
+
}
|
|
14195
|
+
|
|
14127
14196
|
.sm\:radio-xs{
|
|
14128
14197
|
height:1rem;
|
|
14129
14198
|
width:1rem;
|
|
@@ -14585,6 +14654,30 @@ html{
|
|
|
14585
14654
|
margin-top:1rem;
|
|
14586
14655
|
}
|
|
14587
14656
|
|
|
14657
|
+
.sm\:menu-vertical :where(li.bordered>a),.sm\:menu-vertical :where(li.bordered>button),.sm\:menu-vertical :where(li.bordered>span){
|
|
14658
|
+
border-bottom-width:0;
|
|
14659
|
+
border-left-width:4px;
|
|
14660
|
+
}
|
|
14661
|
+
|
|
14662
|
+
.sm\:menu-horizontal :where(li.bordered>a),.sm\:menu-horizontal :where(li.bordered>button),.sm\:menu-horizontal :where(li.bordered>span){
|
|
14663
|
+
border-left-width:0;
|
|
14664
|
+
border-bottom-width:4px;
|
|
14665
|
+
}
|
|
14666
|
+
|
|
14667
|
+
.sm\:menu-normal :where(li>a),.sm\:menu-normal :where(li>button),.sm\:menu-normal :where(li>span){
|
|
14668
|
+
font-size:1rem;
|
|
14669
|
+
line-height:1.5rem;
|
|
14670
|
+
padding-top:.75rem;
|
|
14671
|
+
padding-bottom:.75rem;
|
|
14672
|
+
}
|
|
14673
|
+
|
|
14674
|
+
.sm\:menu-compact :where(li>a),.sm\:menu-compact :where(li>button),.sm\:menu-compact :where(li>span){
|
|
14675
|
+
font-size:.875rem;
|
|
14676
|
+
line-height:1.25rem;
|
|
14677
|
+
padding-top:.5rem;
|
|
14678
|
+
padding-bottom:.5rem;
|
|
14679
|
+
}
|
|
14680
|
+
|
|
14588
14681
|
.sm\:steps-horizontal [class~=step]{
|
|
14589
14682
|
grid-template-rows:40px 1fr;
|
|
14590
14683
|
grid-template-columns:auto;
|
|
@@ -18870,6 +18963,23 @@ html{
|
|
|
18870
18963
|
min-width:2.5em;
|
|
18871
18964
|
}
|
|
18872
18965
|
|
|
18966
|
+
.md\:menu-vertical{
|
|
18967
|
+
flex-direction:column;
|
|
18968
|
+
}
|
|
18969
|
+
|
|
18970
|
+
.md\:menu-vertical :where(li){
|
|
18971
|
+
flex-direction:column;
|
|
18972
|
+
}
|
|
18973
|
+
|
|
18974
|
+
.md\:menu-horizontal{
|
|
18975
|
+
display:inline-flex;
|
|
18976
|
+
flex-direction:row;
|
|
18977
|
+
}
|
|
18978
|
+
|
|
18979
|
+
.md\:menu-horizontal :where(li){
|
|
18980
|
+
flex-direction:row;
|
|
18981
|
+
}
|
|
18982
|
+
|
|
18873
18983
|
.md\:radio-xs{
|
|
18874
18984
|
height:1rem;
|
|
18875
18985
|
width:1rem;
|
|
@@ -19331,6 +19441,30 @@ html{
|
|
|
19331
19441
|
margin-top:1rem;
|
|
19332
19442
|
}
|
|
19333
19443
|
|
|
19444
|
+
.md\:menu-vertical :where(li.bordered>a),.md\:menu-vertical :where(li.bordered>button),.md\:menu-vertical :where(li.bordered>span){
|
|
19445
|
+
border-bottom-width:0;
|
|
19446
|
+
border-left-width:4px;
|
|
19447
|
+
}
|
|
19448
|
+
|
|
19449
|
+
.md\:menu-horizontal :where(li.bordered>a),.md\:menu-horizontal :where(li.bordered>button),.md\:menu-horizontal :where(li.bordered>span){
|
|
19450
|
+
border-left-width:0;
|
|
19451
|
+
border-bottom-width:4px;
|
|
19452
|
+
}
|
|
19453
|
+
|
|
19454
|
+
.md\:menu-normal :where(li>a),.md\:menu-normal :where(li>button),.md\:menu-normal :where(li>span){
|
|
19455
|
+
font-size:1rem;
|
|
19456
|
+
line-height:1.5rem;
|
|
19457
|
+
padding-top:.75rem;
|
|
19458
|
+
padding-bottom:.75rem;
|
|
19459
|
+
}
|
|
19460
|
+
|
|
19461
|
+
.md\:menu-compact :where(li>a),.md\:menu-compact :where(li>button),.md\:menu-compact :where(li>span){
|
|
19462
|
+
font-size:.875rem;
|
|
19463
|
+
line-height:1.25rem;
|
|
19464
|
+
padding-top:.5rem;
|
|
19465
|
+
padding-bottom:.5rem;
|
|
19466
|
+
}
|
|
19467
|
+
|
|
19334
19468
|
.md\:steps-horizontal [class~=step]{
|
|
19335
19469
|
grid-template-rows:40px 1fr;
|
|
19336
19470
|
grid-template-columns:auto;
|
|
@@ -23616,6 +23750,23 @@ html{
|
|
|
23616
23750
|
min-width:2.5em;
|
|
23617
23751
|
}
|
|
23618
23752
|
|
|
23753
|
+
.lg\:menu-vertical{
|
|
23754
|
+
flex-direction:column;
|
|
23755
|
+
}
|
|
23756
|
+
|
|
23757
|
+
.lg\:menu-vertical :where(li){
|
|
23758
|
+
flex-direction:column;
|
|
23759
|
+
}
|
|
23760
|
+
|
|
23761
|
+
.lg\:menu-horizontal{
|
|
23762
|
+
display:inline-flex;
|
|
23763
|
+
flex-direction:row;
|
|
23764
|
+
}
|
|
23765
|
+
|
|
23766
|
+
.lg\:menu-horizontal :where(li){
|
|
23767
|
+
flex-direction:row;
|
|
23768
|
+
}
|
|
23769
|
+
|
|
23619
23770
|
.lg\:radio-xs{
|
|
23620
23771
|
height:1rem;
|
|
23621
23772
|
width:1rem;
|
|
@@ -24077,6 +24228,30 @@ html{
|
|
|
24077
24228
|
margin-top:1rem;
|
|
24078
24229
|
}
|
|
24079
24230
|
|
|
24231
|
+
.lg\:menu-vertical :where(li.bordered>a),.lg\:menu-vertical :where(li.bordered>button),.lg\:menu-vertical :where(li.bordered>span){
|
|
24232
|
+
border-bottom-width:0;
|
|
24233
|
+
border-left-width:4px;
|
|
24234
|
+
}
|
|
24235
|
+
|
|
24236
|
+
.lg\:menu-horizontal :where(li.bordered>a),.lg\:menu-horizontal :where(li.bordered>button),.lg\:menu-horizontal :where(li.bordered>span){
|
|
24237
|
+
border-left-width:0;
|
|
24238
|
+
border-bottom-width:4px;
|
|
24239
|
+
}
|
|
24240
|
+
|
|
24241
|
+
.lg\:menu-normal :where(li>a),.lg\:menu-normal :where(li>button),.lg\:menu-normal :where(li>span){
|
|
24242
|
+
font-size:1rem;
|
|
24243
|
+
line-height:1.5rem;
|
|
24244
|
+
padding-top:.75rem;
|
|
24245
|
+
padding-bottom:.75rem;
|
|
24246
|
+
}
|
|
24247
|
+
|
|
24248
|
+
.lg\:menu-compact :where(li>a),.lg\:menu-compact :where(li>button),.lg\:menu-compact :where(li>span){
|
|
24249
|
+
font-size:.875rem;
|
|
24250
|
+
line-height:1.25rem;
|
|
24251
|
+
padding-top:.5rem;
|
|
24252
|
+
padding-bottom:.5rem;
|
|
24253
|
+
}
|
|
24254
|
+
|
|
24080
24255
|
.lg\:steps-horizontal [class~=step]{
|
|
24081
24256
|
grid-template-rows:40px 1fr;
|
|
24082
24257
|
grid-template-columns:auto;
|
|
@@ -28362,6 +28537,23 @@ html{
|
|
|
28362
28537
|
min-width:2.5em;
|
|
28363
28538
|
}
|
|
28364
28539
|
|
|
28540
|
+
.xl\:menu-vertical{
|
|
28541
|
+
flex-direction:column;
|
|
28542
|
+
}
|
|
28543
|
+
|
|
28544
|
+
.xl\:menu-vertical :where(li){
|
|
28545
|
+
flex-direction:column;
|
|
28546
|
+
}
|
|
28547
|
+
|
|
28548
|
+
.xl\:menu-horizontal{
|
|
28549
|
+
display:inline-flex;
|
|
28550
|
+
flex-direction:row;
|
|
28551
|
+
}
|
|
28552
|
+
|
|
28553
|
+
.xl\:menu-horizontal :where(li){
|
|
28554
|
+
flex-direction:row;
|
|
28555
|
+
}
|
|
28556
|
+
|
|
28365
28557
|
.xl\:radio-xs{
|
|
28366
28558
|
height:1rem;
|
|
28367
28559
|
width:1rem;
|
|
@@ -28823,6 +29015,30 @@ html{
|
|
|
28823
29015
|
margin-top:1rem;
|
|
28824
29016
|
}
|
|
28825
29017
|
|
|
29018
|
+
.xl\:menu-vertical :where(li.bordered>a),.xl\:menu-vertical :where(li.bordered>button),.xl\:menu-vertical :where(li.bordered>span){
|
|
29019
|
+
border-bottom-width:0;
|
|
29020
|
+
border-left-width:4px;
|
|
29021
|
+
}
|
|
29022
|
+
|
|
29023
|
+
.xl\:menu-horizontal :where(li.bordered>a),.xl\:menu-horizontal :where(li.bordered>button),.xl\:menu-horizontal :where(li.bordered>span){
|
|
29024
|
+
border-left-width:0;
|
|
29025
|
+
border-bottom-width:4px;
|
|
29026
|
+
}
|
|
29027
|
+
|
|
29028
|
+
.xl\:menu-normal :where(li>a),.xl\:menu-normal :where(li>button),.xl\:menu-normal :where(li>span){
|
|
29029
|
+
font-size:1rem;
|
|
29030
|
+
line-height:1.5rem;
|
|
29031
|
+
padding-top:.75rem;
|
|
29032
|
+
padding-bottom:.75rem;
|
|
29033
|
+
}
|
|
29034
|
+
|
|
29035
|
+
.xl\:menu-compact :where(li>a),.xl\:menu-compact :where(li>button),.xl\:menu-compact :where(li>span){
|
|
29036
|
+
font-size:.875rem;
|
|
29037
|
+
line-height:1.25rem;
|
|
29038
|
+
padding-top:.5rem;
|
|
29039
|
+
padding-bottom:.5rem;
|
|
29040
|
+
}
|
|
29041
|
+
|
|
28826
29042
|
.xl\:steps-horizontal [class~=step]{
|
|
28827
29043
|
grid-template-rows:40px 1fr;
|
|
28828
29044
|
grid-template-columns:auto;
|
|
@@ -33108,6 +33324,23 @@ html{
|
|
|
33108
33324
|
min-width:2.5em;
|
|
33109
33325
|
}
|
|
33110
33326
|
|
|
33327
|
+
.\32xl\:menu-vertical{
|
|
33328
|
+
flex-direction:column;
|
|
33329
|
+
}
|
|
33330
|
+
|
|
33331
|
+
.\32xl\:menu-vertical :where(li){
|
|
33332
|
+
flex-direction:column;
|
|
33333
|
+
}
|
|
33334
|
+
|
|
33335
|
+
.\32xl\:menu-horizontal{
|
|
33336
|
+
display:inline-flex;
|
|
33337
|
+
flex-direction:row;
|
|
33338
|
+
}
|
|
33339
|
+
|
|
33340
|
+
.\32xl\:menu-horizontal :where(li){
|
|
33341
|
+
flex-direction:row;
|
|
33342
|
+
}
|
|
33343
|
+
|
|
33111
33344
|
.\32xl\:radio-xs{
|
|
33112
33345
|
height:1rem;
|
|
33113
33346
|
width:1rem;
|
|
@@ -33569,6 +33802,30 @@ html{
|
|
|
33569
33802
|
margin-top:1rem;
|
|
33570
33803
|
}
|
|
33571
33804
|
|
|
33805
|
+
.\32xl\:menu-vertical :where(li.bordered>a),.\32xl\:menu-vertical :where(li.bordered>button),.\32xl\:menu-vertical :where(li.bordered>span){
|
|
33806
|
+
border-bottom-width:0;
|
|
33807
|
+
border-left-width:4px;
|
|
33808
|
+
}
|
|
33809
|
+
|
|
33810
|
+
.\32xl\:menu-horizontal :where(li.bordered>a),.\32xl\:menu-horizontal :where(li.bordered>button),.\32xl\:menu-horizontal :where(li.bordered>span){
|
|
33811
|
+
border-left-width:0;
|
|
33812
|
+
border-bottom-width:4px;
|
|
33813
|
+
}
|
|
33814
|
+
|
|
33815
|
+
.\32xl\:menu-normal :where(li>a),.\32xl\:menu-normal :where(li>button),.\32xl\:menu-normal :where(li>span){
|
|
33816
|
+
font-size:1rem;
|
|
33817
|
+
line-height:1.5rem;
|
|
33818
|
+
padding-top:.75rem;
|
|
33819
|
+
padding-bottom:.75rem;
|
|
33820
|
+
}
|
|
33821
|
+
|
|
33822
|
+
.\32xl\:menu-compact :where(li>a),.\32xl\:menu-compact :where(li>button),.\32xl\:menu-compact :where(li>span){
|
|
33823
|
+
font-size:.875rem;
|
|
33824
|
+
line-height:1.25rem;
|
|
33825
|
+
padding-top:.5rem;
|
|
33826
|
+
padding-bottom:.5rem;
|
|
33827
|
+
}
|
|
33828
|
+
|
|
33572
33829
|
.\32xl\:steps-horizontal [class~=step]{
|
|
33573
33830
|
grid-template-rows:40px 1fr;
|
|
33574
33831
|
grid-template-columns:auto;
|
package/dist/styled.css
CHANGED
|
@@ -757,9 +757,11 @@
|
|
|
757
757
|
flex-direction:column;
|
|
758
758
|
align-items:stretch;
|
|
759
759
|
}
|
|
760
|
-
.menu :where(li)>a,.menu :where(li)>span{
|
|
760
|
+
.menu :where(li)>a,.menu :where(li)>button,.menu :where(li)>span{
|
|
761
761
|
display:flex;
|
|
762
762
|
align-items:center;
|
|
763
|
+
outline:2px solid transparent;
|
|
764
|
+
outline-offset:2px;
|
|
763
765
|
transition-property:background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
|
|
764
766
|
transition-duration:.15s;
|
|
765
767
|
transition-timing-function:cubic-bezier(.4, 0, .2, 1);
|
|
@@ -767,12 +769,16 @@
|
|
|
767
769
|
}
|
|
768
770
|
.menu :where(li)>a{
|
|
769
771
|
cursor:pointer;
|
|
772
|
+
-webkit-user-select:none;
|
|
773
|
+
-moz-user-select:none;
|
|
774
|
+
-ms-user-select:none;
|
|
775
|
+
user-select:none;
|
|
770
776
|
}
|
|
771
777
|
.menu :where(li)>a:focus{
|
|
772
778
|
outline:2px solid transparent;
|
|
773
779
|
outline-offset:2px;
|
|
774
780
|
}
|
|
775
|
-
.menu :where(li).disabled>a,.menu :where(li).disabled>span{
|
|
781
|
+
.menu :where(li).disabled>a,.menu :where(li).disabled>button,.menu :where(li).disabled>span{
|
|
776
782
|
cursor:auto;
|
|
777
783
|
}
|
|
778
784
|
.mockup-code{
|
|
@@ -2335,7 +2341,7 @@
|
|
|
2335
2341
|
.mask-triangle-4{
|
|
2336
2342
|
-webkit-mask-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTUwIiBoZWlnaHQ9IjE3NCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsPSIjMDAwIiBkPSJNLjYzMSA4Ny4xMDdMLjQ0Ni41MDVsNzQuMjM5IDQzLjQ2MiA3NC40MjIgNDMuMTQtNzQuNDIyIDQzLjE0TC40NDYgMTczLjcxeiIgZmlsbC1ydWxlPSJldmVub2RkIi8+PC9zdmc+);
|
|
2337
2343
|
mask-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTUwIiBoZWlnaHQ9IjE3NCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsPSIjMDAwIiBkPSJNLjYzMSA4Ny4xMDdMLjQ0Ni41MDVsNzQuMjM5IDQzLjQ2MiA3NC40MjIgNDMuMTQtNzQuNDIyIDQzLjE0TC40NDYgMTczLjcxeiIgZmlsbC1ydWxlPSJldmVub2RkIi8+PC9zdmc+);
|
|
2338
|
-
}.menu.horizontal li.bordered>a,.menu.horizontal li.bordered>span{
|
|
2344
|
+
}.menu.horizontal li.bordered>a,.menu.horizontal li.bordered>button,.menu.horizontal li.bordered>span{
|
|
2339
2345
|
--tw-border-opacity:1;
|
|
2340
2346
|
border-color:hsla(var(--p) / var(--tw-border-opacity, 1));
|
|
2341
2347
|
border-left-width:0;
|
|
@@ -2344,11 +2350,16 @@
|
|
|
2344
2350
|
.menu[class*=p-] li a{
|
|
2345
2351
|
border-radius:var(--rounded-btn, .5rem);
|
|
2346
2352
|
}
|
|
2347
|
-
.menu
|
|
2353
|
+
.menu :where(li.bordered>a),.menu :where(li.bordered>button),.menu :where(li.bordered>span){
|
|
2354
|
+
--tw-border-opacity:1;
|
|
2355
|
+
border-color:hsla(var(--p) / var(--tw-border-opacity, 1));
|
|
2356
|
+
border-left-width:4px;
|
|
2357
|
+
}
|
|
2358
|
+
.menu li>:where(a),.menu li>:where(button),.menu li>:where(span){
|
|
2348
2359
|
padding:.75rem 1.25rem;
|
|
2349
2360
|
color:currentColor;
|
|
2350
2361
|
}
|
|
2351
|
-
.menu li>:where(a:focus),.menu li>:where(a:hover){
|
|
2362
|
+
.menu li>:where(a:focus),.menu li>:where(a:hover),.menu li>:where(button:focus),.menu li>:where(button:hover){
|
|
2352
2363
|
--tw-bg-opacity:1;
|
|
2353
2364
|
background-color:hsla(var(--bc) / var(--tw-bg-opacity, 1));
|
|
2354
2365
|
--tw-bg-opacity:0.1;
|
|
@@ -2359,25 +2370,20 @@
|
|
|
2359
2370
|
--tw-text-opacity:1;
|
|
2360
2371
|
color:hsla(var(--pc) / var(--tw-text-opacity, 1));
|
|
2361
2372
|
}
|
|
2362
|
-
.menu li>:where(a:active){
|
|
2373
|
+
.menu li>:where(a:active),.menu li>:where(button:active){
|
|
2363
2374
|
--tw-bg-opacity:1;
|
|
2364
2375
|
background-color:hsla(var(--pf) / var(--tw-bg-opacity, 1));
|
|
2365
2376
|
--tw-text-opacity:1;
|
|
2366
2377
|
color:hsla(var(--pc) / var(--tw-text-opacity, 1));
|
|
2367
2378
|
}
|
|
2368
|
-
.menu li.disabled>a:hover,.menu li.disabled>span:hover{
|
|
2379
|
+
.menu li.disabled>a:hover,.menu li.disabled>button:hover,.menu li.disabled>span:hover{
|
|
2369
2380
|
background-color:transparent;
|
|
2370
2381
|
}
|
|
2371
|
-
.menu li.disabled>a,.menu li.disabled>span{
|
|
2382
|
+
.menu li.disabled>a,.menu li.disabled>button,.menu li.disabled>span{
|
|
2372
2383
|
--tw-text-opacity:1;
|
|
2373
2384
|
color:hsla(var(--bc) / var(--tw-text-opacity, 1));
|
|
2374
2385
|
--tw-text-opacity:0.2;
|
|
2375
2386
|
}
|
|
2376
|
-
.menu li.bordered a,.menu li.bordered span{
|
|
2377
|
-
--tw-border-opacity:1;
|
|
2378
|
-
border-color:hsla(var(--p) / var(--tw-border-opacity, 1));
|
|
2379
|
-
border-left-width:4px;
|
|
2380
|
-
}
|
|
2381
2387
|
.menu li.hover-bordered a{
|
|
2382
2388
|
border-color:transparent;
|
|
2383
2389
|
}
|
|
@@ -2993,6 +2999,10 @@
|
|
|
2993
2999
|
.select-disabled,.select[disabled]{
|
|
2994
3000
|
--tw-text-opacity:0.2;
|
|
2995
3001
|
}
|
|
3002
|
+
.select-multiple,.select[multiple],.select[size].select:not([size="1"]){
|
|
3003
|
+
background-image:none;
|
|
3004
|
+
padding-right:1rem;
|
|
3005
|
+
}
|
|
2996
3006
|
.stack{
|
|
2997
3007
|
place-items:center;
|
|
2998
3008
|
align-items:flex-end;
|