From 85ed87427b56f991968dd09a06083ce956cb9ace Mon Sep 17 00:00:00 2001 From: Saurabh Khanduja Date: Thu, 23 Nov 2023 13:41:43 +0530 Subject: [PATCH] Fix regression - Keep output of cell blocks in jupyter in scrollable area. --- docs/_static/css/furo_overrides.css | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/docs/_static/css/furo_overrides.css b/docs/_static/css/furo_overrides.css index 4743eee253c..9451fd0baf7 100644 --- a/docs/_static/css/furo_overrides.css +++ b/docs/_static/css/furo_overrides.css @@ -45,5 +45,11 @@ /* Fix for references. See Open3D PR #6470 */ div.citation > span { - padding-right: 2rem; + padding-right: 2rem; +} + +/* Limit output of jupyter notebook within a scrollable area in generated documentation */ +.nboutput .output_area div > pre { + overflow-y: scroll !important; + max-height: 30em; }