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