Show More
@@ -2,9 +2,9 b'' | |||
|
2 | 2 | |
|
3 | 3 | @textColor: @black; |
|
4 | 4 | @baseFontSize: 13px; |
|
5 | @baseLineHeight: 1.231; | |
|
6 | @monoFontFamily: monospace; // to allow user to customize their fonts | |
|
5 | @monoFontFamily: monospace; // to allow user to customize their fonts | |
|
7 | 6 | |
|
8 | 7 | // Our own global variables for all pages go here |
|
9 | 8 | |
|
10 |
@corner_radius: |
|
|
9 | @corner_radius: 4px; | |
|
10 | @code_line_height: 1.231em; |
@@ -10,7 +10,7 b'' | |||
|
10 | 10 | */ |
|
11 | 11 | |
|
12 | 12 | .CodeMirror { |
|
13 |
line-height: @ |
|
|
13 | line-height: @code_line_height; /* Changed from 1em to our global default */ | |
|
14 | 14 | height: auto; /* Changed to auto to autogrow */ |
|
15 | 15 | background: none; /* Changed from white to allow our bg to show through */ |
|
16 | 16 | } |
@@ -37,7 +37,7 b' div.output_text {' | |||
|
37 | 37 | color: @textColor; |
|
38 | 38 | font-family: @monoFontFamily; |
|
39 | 39 | /* This has to match that of the the CodeMirror class line-height below */ |
|
40 |
line-height: @ |
|
|
40 | line-height: @code_line_height; | |
|
41 | 41 | } |
|
42 | 42 | |
|
43 | 43 | /* stdout/stderr are 'text' as well as 'stream', but pyout/pyerr are *not* streams */ |
General Comments 0
You need to be logged in to leave comments.
Login now