From 7fcc683e6f72fba7fa01fc9ef96ed7f2b69081dd Mon Sep 17 00:00:00 2001 From: MinRK Date: Thu, 21 Mar 2013 12:21:49 -0700 Subject: [PATCH] add width:100% to vbox for webkit / FF consistency closes #3049 --- .../frontend/html/notebook/static/less/flexible-box-model.less | 2 ++ 1 file changed, 2 insertions(+) diff --git a/IPython/frontend/html/notebook/static/less/flexible-box-model.less b/IPython/frontend/html/notebook/static/less/flexible-box-model.less index 5578475d8..53988edd2 100644 --- a/IPython/frontend/html/notebook/static/less/flexible-box-model.less +++ b/IPython/frontend/html/notebook/static/less/flexible-box-model.less @@ -34,6 +34,8 @@ display: box; box-orient: vertical; box-align: stretch; + /* width must be 100% to force FF to behave like webkit */ + width: 100%; } .vbox > * {