##// END OF EJS Templates
Changing CodeMirror-scroll to overflow-y: hidden....
Brian E. Granger -
Show More
@@ -266,13 +266,15 b' div.text_cell_render {'
266 }
266 }
267
267
268 .CodeMirror {
268 .CodeMirror {
269 line-height: 1.231; /* Changed from 1em to our global default */
269 line-height: 1.231; /* Changed from 1em to our global default */
270 }
270 }
271
271
272 .CodeMirror-scroll {
272 .CodeMirror-scroll {
273 height: auto; /* Changed to auto to autogrow */
273 height: auto; /* Changed to auto to autogrow */
274 overflow-y: visible; /* Changed from auto to remove scrollbar */
274 /* The CodeMirror docs are a bit fuzzy on if overflow-y should be hidden or visible.*/
275 overflow-x: auto; /* Changed from auto to remove scrollbar */
275 /* We have found that if it is visible, vertical scrollbars appear with font size changes.*/
276 overflow-y: hidden;
277 overflow-x: auto; /* Changed from auto to remove scrollbar */
276 }
278 }
277
279
278 /* CSS font colors for translated ANSI colors. */
280 /* CSS font colors for translated ANSI colors. */
@@ -62,7 +62,7 b''
62 <div class="section_row">
62 <div class="section_row">
63 <span>
63 <span>
64 <select id="download_format">
64 <select id="download_format">
65 <option value="json">json</option>
65 <option value="json">ipynb</option>
66 <option value="py">py</option>
66 <option value="py">py</option>
67 </select>
67 </select>
68 </span>
68 </span>
General Comments 0
You need to be logged in to leave comments. Login now