daisyui 3.7.1 → 3.7.3
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/dist/full.css +6 -2
- package/dist/styled.css +7 -2
- package/dist/styled.js +1 -1
- package/dist/styled.rtl.js +1 -1
- package/dist/unstyled.css +5 -0
- package/dist/unstyled.js +1 -1
- package/dist/unstyled.rtl.js +1 -1
- package/package.json +1 -1
package/dist/full.css
CHANGED
|
@@ -1884,7 +1884,7 @@ html {
|
|
|
1884
1884
|
.chat-start .chat-bubble:before {
|
|
1885
1885
|
-webkit-mask-image: url("data:image/svg+xml,%3csvg width='3' height='3' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='black' d='m 0 3 L 3 3 L 3 0 C 3 1 1 3 0 3'/%3e%3c/svg%3e");
|
|
1886
1886
|
mask-image: url("data:image/svg+xml,%3csvg width='3' height='3' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='black' d='m 0 3 L 3 3 L 3 0 C 3 1 1 3 0 3'/%3e%3c/svg%3e");
|
|
1887
|
-
left: -0.
|
|
1887
|
+
left: -0.749rem}
|
|
1888
1888
|
[dir="rtl"] .chat-start .chat-bubble:before {
|
|
1889
1889
|
-webkit-mask-image: url("data:image/svg+xml,%3csvg width='3' height='3' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='black' d='m 0 3 L 1 3 L 3 3 C 2 3 0 1 0 0'/%3e%3c/svg%3e");
|
|
1890
1890
|
mask-image: url("data:image/svg+xml,%3csvg width='3' height='3' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='black' d='m 0 3 L 1 3 L 3 3 C 2 3 0 1 0 0'/%3e%3c/svg%3e")}
|
|
@@ -1903,7 +1903,7 @@ html {
|
|
|
1903
1903
|
.chat-end .chat-bubble:before {
|
|
1904
1904
|
-webkit-mask-image: url("data:image/svg+xml,%3csvg width='3' height='3' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='black' d='m 0 3 L 1 3 L 3 3 C 2 3 0 1 0 0'/%3e%3c/svg%3e");
|
|
1905
1905
|
mask-image: url("data:image/svg+xml,%3csvg width='3' height='3' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='black' d='m 0 3 L 1 3 L 3 3 C 2 3 0 1 0 0'/%3e%3c/svg%3e");
|
|
1906
|
-
left:
|
|
1906
|
+
left: 99.9%}
|
|
1907
1907
|
[dir="rtl"] .chat-end .chat-bubble:before {
|
|
1908
1908
|
-webkit-mask-image: url("data:image/svg+xml,%3csvg width='3' height='3' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='black' d='m 0 3 L 3 3 L 3 0 C 3 1 1 3 0 3'/%3e%3c/svg%3e");
|
|
1909
1909
|
mask-image: url("data:image/svg+xml,%3csvg width='3' height='3' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='black' d='m 0 3 L 3 3 L 3 0 C 3 1 1 3 0 3'/%3e%3c/svg%3e")}
|
|
@@ -2474,6 +2474,10 @@ html {
|
|
|
2474
2474
|
.join *:first-child:not(:last-child) .join-item {
|
|
2475
2475
|
border-top-right-radius: 0;
|
|
2476
2476
|
border-bottom-right-radius: 0}
|
|
2477
|
+
.join .dropdown .join-item:first-child:not(:last-child),
|
|
2478
|
+
.join *:first-child:not(:last-child) .dropdown .join-item {
|
|
2479
|
+
border-top-right-radius: inherit;
|
|
2480
|
+
border-bottom-right-radius: inherit}
|
|
2477
2481
|
.join :where(.join-item:first-child:not(:last-child)),
|
|
2478
2482
|
.join :where(*:first-child:not(:last-child) .join-item) {
|
|
2479
2483
|
border-bottom-left-radius: inherit;
|
package/dist/styled.css
CHANGED
|
@@ -742,6 +742,11 @@
|
|
|
742
742
|
border-top-right-radius: 0;
|
|
743
743
|
border-bottom-right-radius: 0;
|
|
744
744
|
}
|
|
745
|
+
.join .dropdown .join-item:first-child:not(:last-child),
|
|
746
|
+
.join *:first-child:not(:last-child) .dropdown .join-item {
|
|
747
|
+
border-top-right-radius: inherit;
|
|
748
|
+
border-bottom-right-radius: inherit;
|
|
749
|
+
}
|
|
745
750
|
.join :where(.join-item:first-child:not(:last-child)),
|
|
746
751
|
.join :where(*:first-child:not(:last-child) .join-item) {
|
|
747
752
|
border-bottom-left-radius: inherit;
|
|
@@ -2125,13 +2130,13 @@
|
|
|
2125
2130
|
border-bottom-left-radius: 0px;
|
|
2126
2131
|
}
|
|
2127
2132
|
.chat-start .chat-bubble:before {
|
|
2128
|
-
left: -0.
|
|
2133
|
+
left: -0.749rem;
|
|
2129
2134
|
}
|
|
2130
2135
|
.chat-end .chat-bubble {
|
|
2131
2136
|
border-bottom-right-radius: 0px;
|
|
2132
2137
|
}
|
|
2133
2138
|
.chat-end .chat-bubble:before {
|
|
2134
|
-
left:
|
|
2139
|
+
left: 99.9%;
|
|
2135
2140
|
}
|
|
2136
2141
|
.checkbox {
|
|
2137
2142
|
--chkbg: var(--bc);
|