From 15a8cd2536d6f5c6ef1cc5529a0fafd7b1912d64 2015-02-09 18:29:50 From: Jonathan Frederic Date: 2015-02-09 18:29:50 Subject: [PATCH] Don't allow output to overflow page width. --- diff --git a/IPython/html/static/notebook/less/outputarea.less b/IPython/html/static/notebook/less/outputarea.less index 4b5738d..42a4dfd 100644 --- a/IPython/html/static/notebook/less/outputarea.less +++ b/IPython/html/static/notebook/less/outputarea.less @@ -92,6 +92,8 @@ div.output_area pre { /* This class is for the output subarea inside the output_area and after the prompt div. */ div.output_subarea { + // Don't let contents overflow page area. + overflow-x: auto; padding: @code_padding; .box-flex1(); }