##// END OF EJS Templates
Updating notebook.less to use baseLineHeight from variables.
Brian E. Granger -
Show More
@@ -202,7 +202,7 b' div.prompt {'
202 font-family: monospace;
202 font-family: monospace;
203 text-align: right;
203 text-align: right;
204 /* This has to match that of the the CodeMirror class line-height below */
204 /* This has to match that of the the CodeMirror class line-height below */
205 line-height: 1.231;
205 line-height: @baseLineHeight;
206 }
206 }
207
207
208 div.input {
208 div.input {
@@ -308,7 +308,7 b' div.output_text {'
308 color: @base_font_color;
308 color: @base_font_color;
309 font-family: monospace;
309 font-family: monospace;
310 /* This has to match that of the the CodeMirror class line-height below */
310 /* This has to match that of the the CodeMirror class line-height below */
311 line-height: 1.231;
311 line-height: @baseLineHeight;
312 }
312 }
313
313
314 /* stdout/stderr are 'text' as well as 'stream', but pyout/pyerr are *not* streams */
314 /* stdout/stderr are 'text' as well as 'stream', but pyout/pyerr are *not* streams */
@@ -368,7 +368,7 b' div.text_cell_render {'
368 */
368 */
369
369
370 .CodeMirror {
370 .CodeMirror {
371 line-height: 1.231; /* Changed from 1em to our global default */
371 line-height: @baseLineHeight; /* Changed from 1em to our global default */
372 height: auto; /* Changed to auto to autogrow */
372 height: auto; /* Changed to auto to autogrow */
373 background: none; /* Changed from white to allow our bg to show through */
373 background: none; /* Changed from white to allow our bg to show through */
374 }
374 }
General Comments 0
You need to be logged in to leave comments. Login now