Jupyter笔记本电脑输出由Jupyter主题导致的保证金切断/截断

问题描述 投票:2回答:3

Jupyter笔记本中的单元输出在左侧被切断,这使得最左边的输出变得模糊。供参考(我还不能发布图片):

https://imgur.com/gallery/rg759nN

知道如何解决这个问题吗?

编辑:感谢下面的兔子,问题似乎是由于使用Jupyter主题提供的备用主题

output jupyter-notebook
3个回答
6
投票

在Jupyter Themes github页面上找到了解决方案:

https://github.com/dunovank/jupyter-themes/issues/288

“在custom.css文件中,我通过更改div.out_prompt_overlay.prompt和div.out_prompt_overlay.prompt来修复它:hover的min-width和width值为11.5ex而不是原始的14.5ex。”

或者我添加了填充:

div.output_area { display: -webkit-box; padding: 13px; }

到chesterish.css文件(这是我正在使用的主题)并使用jupyter主题重新应用主题。


0
投票
  • 按Ctrl + Shift + C在浏览器中打开DevTools。
  • 转到Sources并单击static
  • 搜索:div.output_area
  • 将填充更改为13px

(开发者错过了1并且只放了3px的距离)


0
投票

这被提出作为一个错误并修复(见https://github.com/dunovank/jupyter-themes/issues/273)。正如欧内斯特在评论中所说:解决方案是升级包并再次加载主题,即

pip install --upgrade jupyterthemes
jt -t {theme}
© www.soinside.com 2019 - 2024. All rights reserved.