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