diff --git a/IPython/html/static/notebook/js/widgets/container.js b/IPython/html/static/notebook/js/widgets/container.js index a9919fa..56a29c4 100644 --- a/IPython/html/static/notebook/js/widgets/container.js +++ b/IPython/html/static/notebook/js/widgets/container.js @@ -91,6 +91,7 @@ define(["notebook/js/widget"], function(widget_manager) { .appendTo(this.$title_bar); this.$body = $('
') .addClass('modal-body') + .addClass('widget-modal-body') .addClass('widget-container') .appendTo(this.$window); diff --git a/IPython/html/static/notebook/less/widgets.less b/IPython/html/static/notebook/less/widgets.less index 75f7fcf..0a1c4a1 100644 --- a/IPython/html/static/notebook/less/widgets.less +++ b/IPython/html/static/notebook/less/widgets.less @@ -222,6 +222,11 @@ The widget area typically looks something like this: margin-left: 0px !important; } +/* ContainerWidget - ModalView Body */ +.widget-modal-body { + max-height: none !important; +} + /* ContainerWidget */ .widget-container { .border-box-sizing();