Show More
@@ -8,7 +8,7 b'' | |||
|
8 | 8 | @import "highlight.less"; |
|
9 | 9 | |
|
10 | 10 | body { |
|
11 |
background-color:@ |
|
|
11 | background-color: @bodyBackground; | |
|
12 | 12 | } |
|
13 | 13 | |
|
14 | 14 | body.notebook_app { |
@@ -220,7 +220,6 b' div.input {' | |||
|
220 | 220 | |
|
221 | 221 | /* input_area and input_prompt must match in top border and margin for alignment */ |
|
222 | 222 | div.input_area { |
|
223 | /*color: @base_font_color;*/ | |
|
224 | 223 | border: 1px solid @light_border_color; |
|
225 | 224 | .corner-all; |
|
226 | 225 | background: @cell_background; |
@@ -313,7 +312,7 b' div.output_subarea {' | |||
|
313 | 312 | /* all text output has this class: */ |
|
314 | 313 | div.output_text { |
|
315 | 314 | text-align: left; |
|
316 |
color: @ |
|
|
315 | color: @textColor; | |
|
317 | 316 | font-family: monospace; |
|
318 | 317 | /* This has to match that of the the CodeMirror class line-height below */ |
|
319 | 318 | line-height: @baseLineHeight; |
@@ -348,7 +347,7 b' div.text_cell {' | |||
|
348 | 347 | } |
|
349 | 348 | |
|
350 | 349 | div.text_cell_input { |
|
351 |
color: @ |
|
|
350 | color: @textColor; | |
|
352 | 351 | border: 1px solid @light_border_color; |
|
353 | 352 | .corner-all; |
|
354 | 353 | background: @cell_background; |
@@ -361,7 +360,7 b' div.text_cell_render {' | |||
|
361 | 360 | width: inherit; |
|
362 | 361 | border-style: none; |
|
363 | 362 | padding: 5px; |
|
364 |
color: @ |
|
|
363 | color: @textColor; | |
|
365 | 364 | } |
|
366 | 365 | |
|
367 | 366 | /* The following gets added to the <head> if it is detected that the user has a |
@@ -405,7 +404,7 b' div.text_cell_render {' | |||
|
405 | 404 | /* CSS font colors for translated ANSI colors. */ |
|
406 | 405 | |
|
407 | 406 | |
|
408 |
.ansiblack {color: @ |
|
|
407 | .ansiblack {color: @textColor;} | |
|
409 | 408 | .ansired {color: darkred;} |
|
410 | 409 | .ansigreen {color: darkgreen;} |
|
411 | 410 | .ansiyellow {color: brown;} |
@@ -433,7 +432,7 b' div.text_cell_render {' | |||
|
433 | 432 | overflow: auto; |
|
434 | 433 | font-family: monospace; |
|
435 | 434 | font-size: 110%; |
|
436 |
color: @ |
|
|
435 | color: @textColor; | |
|
437 | 436 | } |
|
438 | 437 | |
|
439 | 438 | .completions select option.context { |
@@ -1,11 +1,9 b'' | |||
|
1 | 1 | |
|
2 | 2 | // Our own variables for this page |
|
3 | 3 | |
|
4 | @notebook_background: white; | |
|
5 |
@cell_ |
|
|
6 | @cell_background: darken(@notebook_background, 3.2%); | |
|
4 | @cell_selected_background: darken(@bodyBackground, 2%); | |
|
5 | @cell_background: darken(@bodyBackground, 3.2%); | |
|
7 | 6 | @border_color: darken(@cell_selected_background, 31%); |
|
8 | 7 | @light_border_color: darken(@cell_selected_background, 17%); |
|
9 | 8 | @border_width: 1px; |
|
10 | @base_font_color: black; | |
|
11 | 9 |
General Comments 0
You need to be logged in to leave comments.
Login now