adminforth 2.26.0-next.10 → 2.26.0-next.12
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.
|
@@ -9,7 +9,8 @@
|
|
|
9
9
|
'-translate-x-full': !sideBarOpen,
|
|
10
10
|
'transform-none': sideBarOpen,
|
|
11
11
|
'sidebar-collapsed': iconOnlySidebarEnabled && isSidebarIconOnly && !isSidebarHovering,
|
|
12
|
-
'sidebar-expanded': !iconOnlySidebarEnabled || !isSidebarIconOnly || (isSidebarIconOnly && isSidebarHovering)
|
|
12
|
+
'sidebar-expanded': !iconOnlySidebarEnabled || !isSidebarIconOnly || (isSidebarIconOnly && isSidebarHovering),
|
|
13
|
+
'sidebar-floating': isSidebarIconOnly && isSidebarHovering
|
|
13
14
|
}"
|
|
14
15
|
aria-label="Sidebar"
|
|
15
16
|
>
|
|
@@ -217,6 +218,9 @@
|
|
|
217
218
|
|
|
218
219
|
.sidebar-expanded {
|
|
219
220
|
width: v-bind(expandedWidth); /* Expanded width (w-64) */
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
.sidebar-floating {
|
|
220
224
|
box-shadow: 3px 0px 12px -2px rgba(0, 0, 0, 0.15);
|
|
221
225
|
}
|
|
222
226
|
|