File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed
extensions/notebook-renderers/src Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -221,24 +221,25 @@ export const activate: ActivationFunction<void> = (ctx) => {
221
221
width: 100%;
222
222
line-height: var(--notebook-cell-output-line-height);
223
223
font-family: var(--notebook-cell-output-font-family);
224
- white-space: pre-wrap;
225
- word-wrap: break-word;
226
-
227
224
font-size: var(--notebook-cell-output-font-size);
228
225
user-select: text;
229
226
-webkit-user-select: text;
230
227
-ms-user-select: text;
231
228
cursor: auto;
232
229
}
233
-
230
+ output-plaintext,
231
+ .traceback {
232
+ white-space: pre-wrap;
233
+ word-wrap: break-word;
234
+ }
234
235
.output > span.scrollable {
235
236
overflow-y: scroll;
236
237
max-height: var(--notebook-cell-output-max-height);
237
238
border: var(--vscode-editorWidget-border);
238
239
border-style: solid;
239
240
padding-left: 4px;
240
- margin-left: -4px ;
241
- margin-right: -4px ;
241
+ box-sizing: border-box ;
242
+ border-width: 1px ;
242
243
}
243
244
.output-plaintext .code-bold,
244
245
.output-stream .code-bold,
You can’t perform that action at this time.
0 commit comments