Skip to content

Commit

Permalink
Merge pull request #2 from benjaminum/pr_limit_output_in_html
Browse files Browse the repository at this point in the history
limit text output in html files generated from notebooks
  • Loading branch information
griegler authored Mar 25, 2020
2 parents 69179f7 + c2fa23c commit d0f9ec0
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions docs/_static/theme_overrides.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,9 @@
overflow: visible !important;
}
}

/* Limit visible text output to about 30 lines and show scrollbar */
.nboutput .output_area div > pre {
overflow-y: scroll !important;
max-height: 30em;
}

0 comments on commit d0f9ec0

Please sign in to comment.