dunovank / jupyter-themes

Custom Jupyter Notebook Themes
MIT License
9.74k stars 1.06k forks source link

Regaining Logo Fix Submission #389

Open MarkMoretto opened 4 years ago

MarkMoretto commented 4 years ago

Hi,

Great repo! Thanks for putting it together.

I'm not sure if this is the intention, but after passing all the command line options for what I thought would include the Jupyter logo at the top right of a default notebook, nothing worked. I ended up going into the custom.css file in my .jupyter folder and adjusting one small thing.

Previous:

div#ipython_notebook {
    display: none;
}

New:

div#ipython_notebook {
 display: block;
 height: 40px !important;
}

That's about it. I think it's line ~817 in my generated .css file, but it also might be different in your notebook.less file.

Now I'm back in business:

image

I'm on WIndows 10, Python 3.7.4, and the latest notebook version.

Thanks!

MarkMoretto commented 4 years ago

I should add that the CLI I use is:

jt -t onedork -N -kl -T -f fira -fs 95 -nf code -nfs 10 -tf opensans -tfs 10 -cellw 90%