pi-sdk-web 0.4.7 → 0.4.8
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/static/style.css +16 -1
- package/package.json +1 -1
package/dist/static/style.css
CHANGED
|
@@ -320,14 +320,29 @@ body {
|
|
|
320
320
|
font-size: 12px;
|
|
321
321
|
}
|
|
322
322
|
|
|
323
|
+
/* Label the args area so it is visually distinct from the output below
|
|
324
|
+
(both are JSON-ish monospace text; without this users cannot tell where
|
|
325
|
+
the parameters end and the result begins). */
|
|
326
|
+
.tool-block .tool-args::before {
|
|
327
|
+
content: 'Args: ';
|
|
328
|
+
color: var(--dim);
|
|
329
|
+
font-weight: 600;
|
|
330
|
+
}
|
|
331
|
+
|
|
323
332
|
.tool-block .tool-output {
|
|
324
|
-
color: var(--
|
|
333
|
+
color: var(--text);
|
|
325
334
|
margin-top: 4px;
|
|
326
335
|
white-space: pre-wrap;
|
|
327
336
|
font-family: monospace;
|
|
328
337
|
font-size: 12px;
|
|
329
338
|
}
|
|
330
339
|
|
|
340
|
+
.tool-block .tool-output::before {
|
|
341
|
+
content: 'Output: ';
|
|
342
|
+
color: var(--dim);
|
|
343
|
+
font-weight: 600;
|
|
344
|
+
}
|
|
345
|
+
|
|
331
346
|
.tool-block .tool-meta {
|
|
332
347
|
margin-top: 4px;
|
|
333
348
|
color: var(--dim);
|