adminforth 2.4.0-next.205 → 2.4.0-next.207
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.
|
@@ -192,22 +192,21 @@
|
|
|
192
192
|
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
193
193
|
overflow: hidden; /* Prevent content from showing during animation */
|
|
194
194
|
will-change: width, transform;
|
|
195
|
-
/* Right-side only shadow */
|
|
196
|
-
box-shadow: 12px 0px 18px -8px rgba(0, 0, 0, 0.15);
|
|
197
|
-
}
|
|
198
|
-
:deep(.dark) .sidebar-container {
|
|
199
|
-
/* Slightly stronger in dark mode */
|
|
200
|
-
box-shadow: 12px 0px 18px -8px rgba(0, 0, 0, 0.45);
|
|
201
195
|
}
|
|
202
196
|
|
|
203
197
|
.sidebar-collapsed {
|
|
204
198
|
width: 4.5rem; /* Collapsed width (w-18) */
|
|
199
|
+
box-shadow: 12px 0px 18px -8px rgba(0, 0, 0, 0.15);
|
|
205
200
|
}
|
|
206
201
|
|
|
207
202
|
.sidebar-expanded {
|
|
208
203
|
width: 16.5rem; /* Expanded width (w-64) */
|
|
209
204
|
}
|
|
210
205
|
|
|
206
|
+
:deep(.dark) .sidebar-collapsed {
|
|
207
|
+
box-shadow: 12px 0px 18px -8px rgba(0, 0, 0, 0.45);
|
|
208
|
+
}
|
|
209
|
+
|
|
211
210
|
/* Text visibility transitions */
|
|
212
211
|
.sidebar-collapsed .af-title {
|
|
213
212
|
opacity: 0;
|