diff --git a/IPython/frontend/html/notebook/static/css/notebook.css b/IPython/frontend/html/notebook/static/css/notebook.css index cebc68e..e1dfbd9 100644 --- a/IPython/frontend/html/notebook/static/css/notebook.css +++ b/IPython/frontend/html/notebook/static/css/notebook.css @@ -73,13 +73,19 @@ body { } -span#ipython_notebook h1 { - font-family: Verdana, "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif; - font-size: 22pt; +div#header { height: 35px; padding: 5px; margin: 0px; + width: 100% +} +span#ipython_notebook { +} + +span#ipython_notebook h1 { + font-family: Verdana, "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif; + font-size: 22pt; } span#kernel_status { @@ -125,7 +131,8 @@ div.section_content { #expand_cell, #collapse_cell, #insert_cell_above, #insert_cell_below, #move_cell_up, #move_cell_down, #to_code, #to_text, #run_selected_cell, -#run_all_cells { +#run_all_cells, #int_kernel, #restart_kernel, #python_help, #ipython_help, +#numpy_help, #matplotlib_help, #scipy_help, #sympy_help { width: 65px; } diff --git a/IPython/frontend/html/notebook/static/js/notebook_main.js b/IPython/frontend/html/notebook/static/js/notebook_main.js index 3c34879..50188a5 100644 --- a/IPython/frontend/html/notebook/static/js/notebook_main.js +++ b/IPython/frontend/html/notebook/static/js/notebook_main.js @@ -21,6 +21,7 @@ $(document).ready(function () { $('div#notebook_panel').addClass('border-box-sizing ui-widget'); IPython.layout_manager = new IPython.LayoutManager(); +// IPython.save_widget = new IPython.SaveWidget('span#save_widget'); IPython.pager = new IPython.Pager('div#pager', 'div#pager_splitter'); IPython.left_panel = new IPython.LeftPanel('div#left_panel', 'div#left_panel_splitter'); IPython.notebook = new IPython.Notebook('div#notebook'); diff --git a/IPython/frontend/html/notebook/static/js/panelsection.js b/IPython/frontend/html/notebook/static/js/panelsection.js index 517eeb4..6ce07a1 100644 --- a/IPython/frontend/html/notebook/static/js/panelsection.js +++ b/IPython/frontend/html/notebook/static/js/panelsection.js @@ -264,7 +264,7 @@ var IPython = (function (IPython) { var row1 = $('
').addClass('cell_section_row ui-helper-clearfix'). append($('').attr('id','help_buttons1').addClass('cell_section_row_buttons'). append( $('').button()); + }; + + IPython.SaveWidget = SaveWidget; + + return IPython; + +}(IPython)); + diff --git a/IPython/frontend/html/notebook/templates/notebook.html b/IPython/frontend/html/notebook/templates/notebook.html index 24fc48a..6bb43af 100644 --- a/IPython/frontend/html/notebook/templates/notebook.html +++ b/IPython/frontend/html/notebook/templates/notebook.html @@ -7,7 +7,7 @@ IPython Notebook - + @@ -31,6 +31,7 @@
@@ -55,6 +56,7 @@ +