@copilotz/chat-ui 0.9.9 → 0.9.11
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/index.cjs +78 -70
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +78 -70
- package/dist/index.js.map +1 -1
- package/dist/styles.css +29 -6
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -1180,6 +1180,9 @@
|
|
|
1180
1180
|
.h-10 {
|
|
1181
1181
|
height: calc(var(--spacing) * 10);
|
|
1182
1182
|
}
|
|
1183
|
+
.h-11 {
|
|
1184
|
+
height: calc(var(--spacing) * 11);
|
|
1185
|
+
}
|
|
1183
1186
|
.h-12 {
|
|
1184
1187
|
height: calc(var(--spacing) * 12);
|
|
1185
1188
|
}
|
|
@@ -1783,12 +1786,24 @@
|
|
|
1783
1786
|
.border-sidebar-border {
|
|
1784
1787
|
border-color: var(--color-sidebar-border);
|
|
1785
1788
|
}
|
|
1789
|
+
.border-sidebar-border\/60 {
|
|
1790
|
+
border-color: color-mix(in srgb, hsl(var(--sidebar-border)) 60%, transparent);
|
|
1791
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1792
|
+
border-color: color-mix(in oklab, var(--color-sidebar-border) 60%, transparent);
|
|
1793
|
+
}
|
|
1794
|
+
}
|
|
1786
1795
|
.border-sidebar-border\/70 {
|
|
1787
1796
|
border-color: color-mix(in srgb, hsl(var(--sidebar-border)) 70%, transparent);
|
|
1788
1797
|
@supports (color: color-mix(in lab, red, red)) {
|
|
1789
1798
|
border-color: color-mix(in oklab, var(--color-sidebar-border) 70%, transparent);
|
|
1790
1799
|
}
|
|
1791
1800
|
}
|
|
1801
|
+
.border-sidebar-border\/80 {
|
|
1802
|
+
border-color: color-mix(in srgb, hsl(var(--sidebar-border)) 80%, transparent);
|
|
1803
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1804
|
+
border-color: color-mix(in oklab, var(--color-sidebar-border) 80%, transparent);
|
|
1805
|
+
}
|
|
1806
|
+
}
|
|
1792
1807
|
.border-transparent {
|
|
1793
1808
|
border-color: transparent;
|
|
1794
1809
|
}
|
|
@@ -1954,12 +1969,6 @@
|
|
|
1954
1969
|
.bg-sidebar-accent {
|
|
1955
1970
|
background-color: var(--color-sidebar-accent);
|
|
1956
1971
|
}
|
|
1957
|
-
.bg-sidebar-accent\/50 {
|
|
1958
|
-
background-color: color-mix(in srgb, hsl(var(--sidebar-accent)) 50%, transparent);
|
|
1959
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
1960
|
-
background-color: color-mix(in oklab, var(--color-sidebar-accent) 50%, transparent);
|
|
1961
|
-
}
|
|
1962
|
-
}
|
|
1963
1972
|
.bg-sidebar-accent\/70 {
|
|
1964
1973
|
background-color: color-mix(in srgb, hsl(var(--sidebar-accent)) 70%, transparent);
|
|
1965
1974
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -2311,6 +2320,12 @@
|
|
|
2311
2320
|
.text-sidebar-foreground {
|
|
2312
2321
|
color: var(--color-sidebar-foreground);
|
|
2313
2322
|
}
|
|
2323
|
+
.text-sidebar-foreground\/45 {
|
|
2324
|
+
color: color-mix(in srgb, hsl(var(--sidebar-foreground)) 45%, transparent);
|
|
2325
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2326
|
+
color: color-mix(in oklab, var(--color-sidebar-foreground) 45%, transparent);
|
|
2327
|
+
}
|
|
2328
|
+
}
|
|
2314
2329
|
.text-sidebar-foreground\/70 {
|
|
2315
2330
|
color: color-mix(in srgb, hsl(var(--sidebar-foreground)) 70%, transparent);
|
|
2316
2331
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -2766,6 +2781,14 @@
|
|
|
2766
2781
|
color: var(--color-muted-foreground);
|
|
2767
2782
|
}
|
|
2768
2783
|
}
|
|
2784
|
+
.placeholder\:text-sidebar-foreground\/50 {
|
|
2785
|
+
&::placeholder {
|
|
2786
|
+
color: color-mix(in srgb, hsl(var(--sidebar-foreground)) 50%, transparent);
|
|
2787
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2788
|
+
color: color-mix(in oklab, var(--color-sidebar-foreground) 50%, transparent);
|
|
2789
|
+
}
|
|
2790
|
+
}
|
|
2791
|
+
}
|
|
2769
2792
|
.after\:absolute {
|
|
2770
2793
|
&::after {
|
|
2771
2794
|
content: var(--tw-content);
|