From 635fc4fbe2be7c8f1bd8decf9d3cb07e260f549a Mon Sep 17 00:00:00 2001 From: Jonathan Frederic Date: Wed, 5 Feb 2014 11:57:29 -0800 Subject: [PATCH] FF Fix: missing scrollbars on inner_cells --- IPython/html/static/notebook/less/cell.less | 3 +++ 1 file changed, 3 insertions(+) diff --git a/IPython/html/static/notebook/less/cell.less b/IPython/html/static/notebook/less/cell.less index ed279f480..ba73ea382 100644 --- a/IPython/html/static/notebook/less/cell.less +++ b/IPython/html/static/notebook/less/cell.less @@ -36,6 +36,9 @@ div.prompt { div.inner_cell { .vbox(); .box-flex1(); + + /* This is required for FF to add scrollbars when code cells overflow. */ + overflow: auto; } /* This is needed so that empty prompt areas can collapse to zero height when there