@vueless/storybook 1.5.5 → 1.5.6
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 +1 -1
- package/theme/manager.css +4 -0
- package/theme/preview.css +10 -0
package/package.json
CHANGED
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
|
}
|