diff --git a/IPython/frontend/html/notebook/static/notebooks/less/notebook.less b/IPython/frontend/html/notebook/static/notebooks/less/notebook.less index 82d837d..1c0bb0f 100644 --- a/IPython/frontend/html/notebook/static/notebooks/less/notebook.less +++ b/IPython/frontend/html/notebook/static/notebooks/less/notebook.less @@ -91,7 +91,7 @@ span#notebook_name { .toolbar { padding: 3px 15px; - border-bottom: @borderwidth @border_color solid; + border-bottom: @border_width @border_color solid; button { margin-top:2px; @@ -219,7 +219,7 @@ div.input { /* input_area and input_prompt must match in top border and margin for alignment */ div.input_area { - /*color: @fontBaseColor;*/ + /*color: @base_font_color;*/ border: 1px solid @light_border_color; .corner-all; background: @cell_background; @@ -309,7 +309,7 @@ div.output_subarea { /* all text output has this class: */ div.output_text { text-align: left; - color: @fontBaseColor; + color: @base_font_color; font-family: monospace; /* This has to match that of the the CodeMirror class line-height below */ line-height: 1.231; @@ -344,7 +344,7 @@ div.text_cell { } div.text_cell_input { - color: @fontBaseColor; + color: @base_font_color; border: 1px solid @light_border_color; .corner-all; background: @cell_background; @@ -357,7 +357,7 @@ div.text_cell_render { width: inherit; border-style: none; padding: 5px; - color: @fontBaseColor; + color: @base_font_color; } /* The following gets added to the if it is detected that the user has a @@ -399,7 +399,7 @@ div.text_cell_render { /* CSS font colors for translated ANSI colors. */ -.ansiblack {color: @fontBaseColor;} +.ansiblack {color: @base_font_color;} .ansired {color: darkred;} .ansigreen {color: darkgreen;} .ansiyellow {color: brown;} @@ -427,7 +427,7 @@ div.text_cell_render { overflow: auto; font-family: monospace; font-size: 110%; - color: @fontBaseColor; + color: @base_font_color; } .completions select option.context { diff --git a/IPython/frontend/html/notebook/static/notebooks/less/tooltip.less b/IPython/frontend/html/notebook/static/notebooks/less/tooltip.less index cc78517..18019ea 100644 --- a/IPython/frontend/html/notebook/static/notebooks/less/tooltip.less +++ b/IPython/frontend/html/notebook/static/notebooks/less/tooltip.less @@ -101,7 +101,7 @@ background-color: @cell_background; overflow : visible; - border: @border_color @borderwidth solid; + border: @border_color @border_width solid; outline: none; padding: 3px; margin: 0px; @@ -134,7 +134,7 @@ .pretooltiparrow:before { background-color : @cell_background; - border : @borderwidth @border_color solid; + border : @border_width @border_color solid; z-index:11; content: ""; position: absolute; diff --git a/IPython/frontend/html/notebook/static/notebooks/less/variables.less b/IPython/frontend/html/notebook/static/notebooks/less/variables.less index 4a63350..84dc222 100644 --- a/IPython/frontend/html/notebook/static/notebooks/less/variables.less +++ b/IPython/frontend/html/notebook/static/notebooks/less/variables.less @@ -6,6 +6,6 @@ @cell_background: darken(@notebook_background, 3.2%); @border_color: darken(@cell_selected_background, 31%); @light_border_color: darken(@cell_selected_background, 17%); -@borderwidth: 1px; -@fontBaseColor: black; +@border_width: 1px; +@base_font_color: black;