##// END OF EJS Templates
Make the main notebook div auto scroll.
Brian Granger -
Show More
@@ -83,7 +83,6 b' span#ipython_notebook h1 {'
83 margin: 10px;
83 margin: 10px;
84 }
84 }
85
85
86
87 div#toolbar {
86 div#toolbar {
88 width: 100%;
87 width: 100%;
89 height: auto;
88 height: auto;
@@ -93,14 +92,10 b' div#toolbar {'
93 padding: 5px;
92 padding: 5px;
94 }
93 }
95
94
96
97 /*#main_toolbar button {
98 font-size: 0.9em;
99 }*/
100
101 div.notebook {
95 div.notebook {
102 width: 790px;
96 width: 790px;
103 height: 100%;
97 height: 650px; /*We might have to detect window height for this*/
98 overflow: auto;
104 margin-left: auto;
99 margin-left: auto;
105 margin-right: auto;
100 margin-right: auto;
106 padding-top: 5px;
101 padding-top: 5px;
@@ -116,7 +111,6 b' div.cell {'
116 display: table;
111 display: table;
117 }
112 }
118
113
119
120 div.code_cell {
114 div.code_cell {
121 background-color: white;
115 background-color: white;
122 }
116 }
@@ -142,7 +136,6 b' div.input_prompt {'
142 color: blue;
136 color: blue;
143 }
137 }
144
138
145
146 textarea.input_area {
139 textarea.input_area {
147 text-align: left;
140 text-align: left;
148 font-family: Menlo, "Courier New", Courier, mono;
141 font-family: Menlo, "Courier New", Courier, mono;
@@ -159,7 +152,6 b' textarea.input_area {'
159 resize: none;
152 resize: none;
160 }
153 }
161
154
162
163 div.output {
155 div.output {
164 display: table-row;
156 display: table-row;
165 padding: 0px;
157 padding: 0px;
General Comments 0
You need to be logged in to leave comments. Login now