Is there a way to resize the scrolling output height in jupyterlab notebooks ?
potential solutions but require HTML/CSS knowledge
I found this snippet from this question resize ipython notebook output window useful but it wont work on jupyterlab
from IPython.core.display import display, HTML display(HTML("<style>div.output_scroll { height: 44em; }</style>"))
I found this CSS snippet here Jupyterlab active scroll bars for long results which can be included using
stylus
. It works to make the scrolling output smaller but for some reason doesn't work to make it larger than the default height.jp-OutputArea-child { max-height: 15em; }
Note the scrolling output am talking about can be achieved by right clicking
+ enable scrolling for output
Main issue:
when am working with jupyterlab notebooks I sometimes have very long outputs, and so I would right clicking
+ enable scrolling for output
. Then the output is folded however I would like to resize that scrolling output (see figure below)
I am using jupyterlab version 2.2.9
Note, i am aware of the following and they don't work for me:
- sidecar extension
create new view for output
functionality