##// END OF EJS Templates
Fixing CM3 style related issues....
Brian E. Granger -
Show More
@@ -916,6 +916,8 b' div.text_cell_input{color:#000000;border:1px solid #cfcfcf;border-radius:4px;bac'
916 div.text_cell_render{outline:none;resize:none;width:inherit;border-style:none;padding:5px;color:#000000;}
916 div.text_cell_render{outline:none;resize:none;width:inherit;border-style:none;padding:5px;color:#000000;}
917 .CodeMirror{line-height:1.231;height:auto;background:none;}
917 .CodeMirror{line-height:1.231;height:auto;background:none;}
918 .CodeMirror-scroll{overflow-y:hidden;overflow-x:auto;}
918 .CodeMirror-scroll{overflow-y:hidden;overflow-x:auto;}
919 .CodeMirror-lines{padding:0.4em;}
920 .CodeMirror pre{padding:0;}
919 .ansiblack{color:#000000;}
921 .ansiblack{color:#000000;}
920 .ansired{color:darkred;}
922 .ansired{color:darkred;}
921 .ansigreen{color:darkgreen;}
923 .ansigreen{color:darkgreen;}
@@ -378,6 +378,18 b' div.text_cell_render {'
378 overflow-x: auto; /* Changed from auto to remove scrollbar */
378 overflow-x: auto; /* Changed from auto to remove scrollbar */
379 }
379 }
380
380
381 .CodeMirror-lines {
382 /* In CM2, this used to be 0.4em, but in CM3 it went to 4px. We need the em value because */
383 /* we have set a different line-height and want this to scale with that. */
384 padding: 0.4em;
385 }
386
387 .CodeMirror pre {
388 /* In CM3 this went to 4px from 0 in CM2. We need the 0 value because of how we size */
389 /* .CodeMirror-lines */
390 padding: 0;
391 }
392
381 /* CSS font colors for translated ANSI colors. */
393 /* CSS font colors for translated ANSI colors. */
382
394
383
395
General Comments 0
You need to be logged in to leave comments. Login now