Removed max height from widget modal body

This commit is contained in:
Jonathan Frederic 2013-11-25 11:22:45 -08:00 committed by Jonathan Frederic
parent 61bfddbd17
commit f9f84fc076
2 changed files with 6 additions and 0 deletions

View File

@ -91,6 +91,7 @@ define(["notebook/js/widget"], function(widget_manager) {
.appendTo(this.$title_bar);
this.$body = $('<div />')
.addClass('modal-body')
.addClass('widget-modal-body')
.addClass('widget-container')
.appendTo(this.$window);

View File

@ -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();