@iota-uz/sdk 0.4.14 → 0.4.16
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/bichat/index.cjs +156 -114
- package/dist/bichat/index.cjs.map +1 -1
- package/dist/bichat/index.d.cts +3 -1
- package/dist/bichat/index.d.ts +3 -1
- package/dist/bichat/index.mjs +156 -114
- package/dist/bichat/index.mjs.map +1 -1
- package/package.json +1 -1
- package/tailwind/compiled.css +1 -1
- package/tailwind/iota.css +22 -0
package/tailwind/iota.css
CHANGED
|
@@ -911,6 +911,28 @@
|
|
|
911
911
|
color: oklch(var(--white));
|
|
912
912
|
}
|
|
913
913
|
|
|
914
|
+
/* Sidebar flyout dropdown (collapsed mode popover) */
|
|
915
|
+
.sidebar-flyout {
|
|
916
|
+
background-color: oklch(var(--clr-surface-200));
|
|
917
|
+
border: 1px solid oklch(var(--white) / 8%);
|
|
918
|
+
box-shadow: 0 8px 24px -4px oklch(var(--black) / 60%);
|
|
919
|
+
color: oklch(var(--white));
|
|
920
|
+
}
|
|
921
|
+
|
|
922
|
+
.sidebar-flyout .btn-sidebar {
|
|
923
|
+
--text-color: var(--gray-300);
|
|
924
|
+
}
|
|
925
|
+
|
|
926
|
+
.sidebar-flyout .btn-sidebar:not(.btn-loading):not(.htmx-request):hover {
|
|
927
|
+
--bg-color: var(--clr-sidebar-btn-bg-hover);
|
|
928
|
+
--text-color: var(--white);
|
|
929
|
+
}
|
|
930
|
+
|
|
931
|
+
.sidebar-flyout .btn-sidebar:not(.btn-loading):not(.htmx-request).active {
|
|
932
|
+
--bg-color: var(--clr-sidebar-btn-bg-active);
|
|
933
|
+
--text-color: var(--white);
|
|
934
|
+
}
|
|
935
|
+
|
|
914
936
|
/* Toggle button styling */
|
|
915
937
|
.btn-ghost {
|
|
916
938
|
--text-color: var(--gray-600);
|