@vueless/storybook 1.5.5-beta.0 → 1.5.6-beta.0

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@vueless/storybook",
3
- "version": "1.5.5-beta.0",
3
+ "version": "1.5.6-beta.0",
4
4
  "description": "Simplifies Storybook configuration for Vueless UI library.",
5
5
  "author": "Johnny Grid <hello@vueless.com> (https://vueless.com)",
6
6
  "homepage": "https://vueless.com",
package/theme/manager.css CHANGED
@@ -116,6 +116,10 @@ button[data-testid="context-menu"] {
116
116
  text-transform: capitalize;
117
117
  }
118
118
 
119
+ .dark .sidebar-subheading-action:hover {
120
+ color: var(--neutral-400);
121
+ }
122
+
119
123
  .light .sidebar-item svg[type="document"],
120
124
  .light .sidebar-item svg[type="component"],
121
125
  .light .search-result-item svg[type="document"],
package/theme/preview.css CHANGED
@@ -343,6 +343,16 @@ html.vl-dark #storybook-root {
343
343
  border: 1px solid var(--neutral-300) !important;
344
344
  }
345
345
 
346
+ .vl-light .dark .docblock-code-toggle {
347
+ border-color: var(--neutral-700) !important;
348
+ color: var(--neutral-400);
349
+ }
350
+
351
+ .vl-dark .light .docblock-code-toggle {
352
+ border-color: var(--neutral-400) !important;
353
+ color: var(--neutral-700);
354
+ }
355
+
346
356
  .vl-dark .docblock-code-toggle {
347
357
  border: 1px solid var(--neutral-700) !important;
348
358
  }