@bagelink/vue 1.15.53 → 1.15.55
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/style.css +1 -1
- package/package.json +1 -1
- package/src/styles/dark.css +16 -3
package/package.json
CHANGED
package/src/styles/dark.css
CHANGED
|
@@ -213,13 +213,26 @@
|
|
|
213
213
|
color: var(--bgl-text-color);
|
|
214
214
|
}
|
|
215
215
|
|
|
216
|
-
/* App sidebar:
|
|
217
|
-
|
|
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-
|
|
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
|