未验证 提交 2069b19e 编写于 作者: R rebornix

fix #132457.

上级 c8b2adbb
......@@ -245,14 +245,14 @@
.monaco-workbench .notebookOverlay .output > div.foreground .output-stream,
.monaco-workbench .notebookOverlay .output > div.foreground .output-plaintext {
font-family: var(--monaco-monospace-font);
font-family: var(--notebook-cell-output-font-family);
white-space: pre-wrap;
word-wrap: break-word;
}
.monaco-workbench .notebookOverlay .output > div.foreground .output-stream pre,
.monaco-workbench .notebookOverlay .output > div.foreground .output-plaintext pre {
font-family: var(--monaco-monospace-font);
font-family: var(--notebook-cell-output-font-family);
}
.monaco-workbench .notebookOverlay .output > div.foreground.error .output-stream {
......
......@@ -612,11 +612,16 @@ export class NotebookEditorWidget extends Disposable implements INotebookEditorD
const { bottomToolbarGap, bottomToolbarHeight } = this._notebookOptions.computeBottomToolbarDimensions(this.viewModel?.viewType);
const styleSheets: string[] = [];
if (!this._fontInfo) {
this._generateFontInfo();
}
const fontFamily = this._fontInfo?.fontFamily ?? `"SF Mono", Monaco, Menlo, Consolas, "Ubuntu Mono", "Liberation Mono", "DejaVu Sans Mono", "Courier New", monospace`;
styleSheets.push(`
:root {
--notebook-cell-output-font-size: ${fontSize}px;
--notebook-cell-output-font-family: ${fontFamily};
--notebook-cell-input-preview-font-size: ${fontSize}px;
--notebook-cell-input-preview-font-family: ${fontFamily};
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册