Show More
@@ -8,6 +8,7 b'' | |||
|
8 | 8 | |
|
9 | 9 | body { |
|
10 | 10 | overflow: hidden; |
|
11 | background-color:@notebook_background; | |
|
11 | 12 | } |
|
12 | 13 | |
|
13 | 14 | blockquote { |
@@ -80,6 +81,7 b' span#notebook_name {' | |||
|
80 | 81 | |
|
81 | 82 | .toolbar { |
|
82 | 83 | padding: 3px 15px; |
|
84 | border-bottom: @borderwidth @border_color solid; | |
|
83 | 85 | } |
|
84 | 86 | |
|
85 | 87 | #maintoolbar > select, #maintoolbar label { |
@@ -126,7 +128,6 b' div#notebook {' | |||
|
126 | 128 | /* This spaces the cell away from the edge of the notebook area */ |
|
127 | 129 | padding: 5px 5px 15px 5px; |
|
128 | 130 | margin: 0px; |
|
129 | background-color: @notebook_background; | |
|
130 | 131 | } |
|
131 | 132 | |
|
132 | 133 | div#pager_splitter { |
@@ -18,7 +18,7 b' var IPython = (function (IPython) {' | |||
|
18 | 18 | |
|
19 | 19 | Page.prototype.style = function () { |
|
20 | 20 | $('div#header').addClass('border-box-sizing'). |
|
21 |
addClass('ui-widget |
|
|
21 | addClass('ui-widget'). | |
|
22 | 22 | css('border-top-style','none'). |
|
23 | 23 | css('border-left-style','none'). |
|
24 | 24 | css('border-right-style','none'); |
@@ -25,8 +25,8 b' var IPython = (function (IPython) {' | |||
|
25 | 25 | |
|
26 | 26 | SaveWidget.prototype.style = function () { |
|
27 | 27 | this.element.find('span#save_widget').addClass('ui-widget'); |
|
28 |
this.element.find('span#notebook_name').addClass('ui-widget |
|
|
29 |
this.element.find('span#save_status').addClass('ui-widget |
|
|
28 | this.element.find('span#notebook_name').addClass('ui-widget'); | |
|
29 | this.element.find('span#save_status').addClass('ui-widget') | |
|
30 | 30 | .css({border: 'none', 'margin-left': '20px'}); |
|
31 | 31 | }; |
|
32 | 32 |
@@ -86,7 +86,7 b' var IPython = (function (IPython) {' | |||
|
86 | 86 | |
|
87 | 87 | ToolBar.prototype.style = function () { |
|
88 | 88 | this.element.addClass('border-box-sizing'). |
|
89 |
addClass(' |
|
|
89 | addClass('toolbar'). | |
|
90 | 90 | css('border-top-style','none'). |
|
91 | 91 | css('border-left-style','none'). |
|
92 | 92 | css('border-right-style','none'); |
General Comments 0
You need to be logged in to leave comments.
Login now