From 04abbe99e1c7af7983b400e9b6e941e9f55e2829 2013-03-21 19:21:49 From: MinRK Date: 2013-03-21 19:21:49 Subject: [PATCH] add width:100% to vbox for webkit / FF consistency closes #3049 --- 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 5578475..53988ed 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 > * {