Adapted from https://github.com/jupyterlab/jupyterlab/issues/4028
jupyter scroll on large output by xgdgsc
Details
Authorxgdgsc
LicenseNo License
Categorylocalhost
Created
Updated
Size289 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name jupyter-autoscroll-large-output
@namespace localhost
@version 1.0.0
*/
@-moz-document regexp("http:\\/\\/localhost:.*\\/lab\\/.*") {
.jp-OutputArea-child {
max-height: 50em;
}
.jp-OutputArea-child .jp-OutputArea-output {
overflow: auto;
}
}