vocs 2.1.3 → 2.1.4
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.
|
@@ -78,3 +78,14 @@
|
|
|
78
78
|
.scalar-app input[type="checkbox"].peer:not(:checked) ~ div svg {
|
|
79
79
|
color: transparent;
|
|
80
80
|
}
|
|
81
|
+
|
|
82
|
+
/*
|
|
83
|
+
* Disabled request parameters keep their value visible, but they should recede
|
|
84
|
+
* from active rows. Scalar renders the checkbox inside the first cell and the
|
|
85
|
+
* value inside the third cell.
|
|
86
|
+
*/
|
|
87
|
+
.scalar-app[data-v-openapi-playground-root] tr:has(input[type="checkbox"].peer:not(:checked))
|
|
88
|
+
> td:nth-child(3)
|
|
89
|
+
:is(.code-input-lite__editor, [data-testid="code-input-lite-disabled"], .text-c-1) {
|
|
90
|
+
color: var(--scalar-color-3);
|
|
91
|
+
}
|