daisyui 2.47.1 → 2.49.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/README.md +1 -1
- package/dist/full.css +1 -1
- package/dist/styled.css +17 -7
- package/dist/styled.js +1 -1
- package/dist/styled.rtl.js +1 -1
- package/dist/unstyled.css +5 -4
- 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/src/index.js +20 -1
package/dist/styled.css
CHANGED
|
@@ -798,6 +798,7 @@
|
|
|
798
798
|
}
|
|
799
799
|
.input-group > *,
|
|
800
800
|
.input-group > .input,
|
|
801
|
+
.input-group > .textarea,
|
|
801
802
|
.input-group > .select {
|
|
802
803
|
border-radius: 0px;
|
|
803
804
|
}
|
|
@@ -1256,14 +1257,14 @@
|
|
|
1256
1257
|
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
|
|
1257
1258
|
transition-duration: 200ms;
|
|
1258
1259
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1259
|
-
|
|
1260
|
-
padding-right: 1rem;
|
|
1260
|
+
min-height: 3rem;
|
|
1261
1261
|
padding-top: 0.5rem;
|
|
1262
1262
|
padding-bottom: 0.5rem;
|
|
1263
|
+
padding-left: 1rem;
|
|
1264
|
+
padding-right: 1rem;
|
|
1263
1265
|
font-size: 0.875rem;
|
|
1264
1266
|
line-height: 1.25rem;
|
|
1265
|
-
line-height: 2
|
|
1266
|
-
min-height: 3rem
|
|
1267
|
+
line-height: 2
|
|
1267
1268
|
}
|
|
1268
1269
|
.toast {
|
|
1269
1270
|
position: fixed;
|
|
@@ -3107,9 +3108,9 @@
|
|
|
3107
3108
|
-webkit-mask-image: url("data:image/svg+xml,%3csvg width='150' height='174' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='black' d='M.631 87.107.446.505l74.239 43.462 74.422 43.14-74.422 43.14L.446 173.71z' fill-rule='evenodd'/%3e%3c/svg%3e");
|
|
3108
3109
|
mask-image: url("data:image/svg+xml,%3csvg width='150' height='174' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='black' d='M.631 87.107.446.505l74.239 43.462 74.422 43.14-74.422 43.14L.446 173.71z' fill-rule='evenodd'/%3e%3c/svg%3e");
|
|
3109
3110
|
}
|
|
3110
|
-
.menu.horizontal li.bordered > a,
|
|
3111
|
-
.menu.horizontal li.bordered > button,
|
|
3112
|
-
.menu.horizontal li.bordered > span {
|
|
3111
|
+
.menu.horizontal > li.bordered > a,
|
|
3112
|
+
.menu.horizontal > li.bordered > button,
|
|
3113
|
+
.menu.horizontal > li.bordered > span {
|
|
3113
3114
|
border-left-width: 0px;
|
|
3114
3115
|
border-bottom-width: 4px;
|
|
3115
3116
|
--tw-border-opacity: 1;
|
|
@@ -3960,6 +3961,10 @@
|
|
|
3960
3961
|
background-image: none;
|
|
3961
3962
|
padding-right: 1rem;
|
|
3962
3963
|
}
|
|
3964
|
+
|
|
3965
|
+
[dir="rtl"] .select {
|
|
3966
|
+
background-position: calc(0% + 12px) calc(1px + 50%), calc(0% + 16px) calc(1px + 50%);
|
|
3967
|
+
}
|
|
3963
3968
|
.stack {
|
|
3964
3969
|
place-items: center;
|
|
3965
3970
|
align-items: flex-end
|
|
@@ -4677,6 +4682,11 @@
|
|
|
4677
4682
|
opacity: 1;
|
|
4678
4683
|
transition-delay: 75ms;
|
|
4679
4684
|
}
|
|
4685
|
+
.tooltip:not([data-tip]):hover:before,
|
|
4686
|
+
.tooltip:not([data-tip]):hover:after {
|
|
4687
|
+
visibility: hidden;
|
|
4688
|
+
opacity: 0;
|
|
4689
|
+
}
|
|
4680
4690
|
.tooltip:after {
|
|
4681
4691
|
content: "";
|
|
4682
4692
|
border-style: solid;
|