【发布时间】:2019-08-30 03:24:59
【问题描述】:
我想通过修改 Python 扩展中的 CSS 来将自定义图标添加到 Jupyter。
我知道 CSS 文件在哪里。但是,当我直接修改它们时,我的修改完全被忽略了。
例如,如果我修改以下文件的内容:
../out/datascience-ui/history-react/menuBar.css
发件人:
.menuBar {
margin-top: 2px;
margin-bottom: 2px;
display: flex;
flex-direction: row-reverse;
justify-content: right;
}
收件人:
.menuBar {
margin-top: 2px;
margin-bottom: 2px;
display: flex;
flex-direction: row-reverse;
justify-content: right;
background-color: #b9b8b8;
}
我添加的行被完全忽略。我想知道有效进行此更改的最简单方法。理想情况下,我想在 Github 上询问这个扩展的开发人员,他们肯定知道答案。但是,Github 并不是为获得此类帮助而设置的。
【问题讨论】:
标签: python visual-studio-code jupyter-notebook