##// END OF EJS Templates
Match the max tooltip and bottom area sizes in the notebook....
Fernando Perez -
Show More
@@ -372,7 +372,7 b' div.text_cell_render {'
372
372
373 /*properties of tooltip after "expand"*/
373 /*properties of tooltip after "expand"*/
374 .bigtooltip{
374 .bigtooltip{
375 height:60%;
375 height:30%;
376 }
376 }
377
377
378 /*properties of tooltip before "expand"*/
378 /*properties of tooltip before "expand"*/
@@ -44,7 +44,7 b' var IPython = (function (IPython) {'
44 // ii) to prevent the div from scrolling up when the last cell is being
44 // ii) to prevent the div from scrolling up when the last cell is being
45 // edited, but is too low on the page, which browsers will do automatically.
45 // edited, but is too low on the page, which browsers will do automatically.
46 var that = this;
46 var that = this;
47 var end_space = $('<div class="end_space"></div>').height(150);
47 var end_space = $('<div class="end_space"></div>').height("30%");
48 end_space.dblclick(function (e) {
48 end_space.dblclick(function (e) {
49 if (that.read_only) return;
49 if (that.read_only) return;
50 var ncells = that.ncells();
50 var ncells = that.ncells();
General Comments 0
You need to be logged in to leave comments. Login now