@bagelink/vue 1.15.53 → 1.15.57

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@bagelink/vue",
3
3
  "type": "module",
4
- "version": "1.15.53",
4
+ "version": "1.15.57",
5
5
  "description": "Bagel core sdk packages",
6
6
  "author": {
7
7
  "name": "Bagel Studio",
@@ -213,13 +213,26 @@
213
213
  color: var(--bgl-text-color);
214
214
  }
215
215
 
216
- /* App sidebar: ensure the sidebar surface follows the semantic dark surface
217
- rather than any inherited physical white. */
216
+ /* App sidebar: the outer <aside> is just a padded shell behind the card, so it
217
+ should match the general page background (--bgl-bg). The inner .cardWrapSide
218
+ carries the elevated surface (--bgl-box-bg) so the card floats over the page. */
218
219
  .bgl-dark-mode #bgl-app-sidebar,
219
220
  .bgl-dark-mode .app-sidebar {
220
- background: var(--bgl-box-bg);
221
+ background: var(--bgl-bg);
221
222
  color: var(--bgl-text-color);
222
223
  }
224
+ .bgl-dark-mode #bgl-app-sidebar .cardWrapSide {
225
+ background-color: var(--bgl-box-bg) !important;
226
+ }
227
+ /* Nav buttons get their bg injected inline from props.bgColor; if a project
228
+ still passes a physical color (e.g. "white"), force non-active buttons back
229
+ to the card surface so they don't stay bright in dark mode. The active one
230
+ (.nav-btn-active) keeps its primary background. */
231
+ .bgl-dark-mode #bgl-app-sidebar .sidebar-nav .bgl_btn:not(.nav-btn-active),
232
+ .bgl-dark-mode #bgl-app-sidebar .sidebar-footer .bgl_btn:not(.nav-btn-active) {
233
+ background-color: transparent !important;
234
+ color: var(--bgl-text-color) !important;
235
+ }
223
236
 
224
237
  /* ----------------------------------------------------------------------------
225
238
  * Input definition on dark surfaces