Show More
@@ -37,9 +37,8 b' input#notebook_name {' | |||
|
37 | 37 | } |
|
38 | 38 | |
|
39 | 39 | span#kernel_status { |
|
40 | position: absolute; | |
|
41 |
padding: |
|
|
42 | right: 10px; | |
|
40 | float: right; | |
|
41 | padding: 0px 5px; | |
|
43 | 42 | font-weight: bold; |
|
44 | 43 | } |
|
45 | 44 | |
@@ -65,10 +64,14 b' div#left_panel {' | |||
|
65 | 64 | position: absolute; |
|
66 | 65 | } |
|
67 | 66 | |
|
68 |
|
|
|
67 | div.section_header { | |
|
69 | 68 | padding: 5px; |
|
70 | 69 | } |
|
71 | 70 | |
|
71 | div.section_header h3 { | |
|
72 | display: inline; | |
|
73 | } | |
|
74 | ||
|
72 | 75 | div.section_content { |
|
73 | 76 | padding: 5px; |
|
74 | 77 | } |
@@ -19,7 +19,7 b' var IPython = (function (IPython) {' | |||
|
19 | 19 | this.selector = selector; |
|
20 | 20 | if (this.selector !== undefined) { |
|
21 | 21 | this.element = $(selector); |
|
22 |
this.header = this.element.find(' |
|
|
22 | this.header = this.element.find('div.section_header'); | |
|
23 | 23 | this.content = this.element.find('div.section_content'); |
|
24 | 24 | this.style(); |
|
25 | 25 | this.bind_events(); |
@@ -29,7 +29,7 b' var IPython = (function (IPython) {' | |||
|
29 | 29 | |
|
30 | 30 | |
|
31 | 31 | PanelSection.prototype.style = function () { |
|
32 | this.header.addClass('ui-widget ui-state-default'); | |
|
32 | this.header.addClass('ui-widget ui-state-default ui-helper-clearfix'); | |
|
33 | 33 | this.header.attr('title', "Click to Show/Hide Section"); |
|
34 | 34 | this.content.addClass('ui-widget section_content'); |
|
35 | 35 | }; |
@@ -58,7 +58,6 b'' | |||
|
58 | 58 | <span id="quick_help_area"> |
|
59 | 59 | <button id="quick_help">Quick<u>H</u>elp</button> |
|
60 | 60 | </span> |
|
61 | <span id="kernel_status">Idle</span> | |
|
62 | 61 | </div> |
|
63 | 62 | |
|
64 | 63 | <div id="MathJaxFetchingWarning" |
@@ -89,7 +88,9 b'' | |||
|
89 | 88 | <div id="left_panel"> |
|
90 | 89 | |
|
91 | 90 | <div id="notebook_section"> |
|
92 |
< |
|
|
91 | <div class="section_header"> | |
|
92 | <h3>Notebook</h3> | |
|
93 | </div> | |
|
93 | 94 | <div class="section_content"> |
|
94 | 95 | <div class="section_row"> |
|
95 | 96 | <span id="new_open" class="section_row_buttons"> |
@@ -120,7 +121,9 b'' | |||
|
120 | 121 | </div> |
|
121 | 122 | |
|
122 | 123 | <div id="cell_section"> |
|
123 |
< |
|
|
124 | <div class="section_header"> | |
|
125 | <h3>Cell</h3> | |
|
126 | </div> | |
|
124 | 127 | <div class="section_content"> |
|
125 | 128 | <div class="section_row"> |
|
126 | 129 | <span class="section_row_buttons"> |
@@ -174,7 +177,10 b'' | |||
|
174 | 177 | </div> |
|
175 | 178 | |
|
176 | 179 | <div id="kernel_section"> |
|
177 |
< |
|
|
180 | <div class="section_header"> | |
|
181 | <h3>Kernel</h3> | |
|
182 | <span id="kernel_status">Idle</span> | |
|
183 | </div> | |
|
178 | 184 | <div class="section_content"> |
|
179 | 185 | <div class="section_row"> |
|
180 | 186 | <span id="int_restart" class="section_row_buttons"> |
@@ -193,7 +199,9 b'' | |||
|
193 | 199 | </div> |
|
194 | 200 | |
|
195 | 201 | <div id="help_section"> |
|
196 |
< |
|
|
202 | <div class="section_header"> | |
|
203 | <h3>Cell</h3> | |
|
204 | </div> | |
|
197 | 205 | <div class="section_content"> |
|
198 | 206 | <div class="section_row"> |
|
199 | 207 | <span id="help_buttons0" class="section_row_buttons"> |
General Comments 0
You need to be logged in to leave comments.
Login now