Fixing less variable names to use_the_right_convention.

This commit is contained in:
Brian E. Granger 2013-05-16 11:38:40 -07:00
parent 121ecb1913
commit 4da176975f
3 changed files with 11 additions and 11 deletions

View File

@ -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 <head> 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 {

View File

@ -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;

View File

@ -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;