added themeing and minor fixes
This commit is contained in:
parent
29d732b85f
commit
d275b2b468
25 changed files with 159 additions and 1236 deletions
37
deps/codeformats/vs.css
vendored
37
deps/codeformats/vs.css
vendored
|
|
@ -31,4 +31,39 @@ body .si { color: #a31515 } /* Literal.String.Interpol */
|
|||
body .sx { color: #a31515 } /* Literal.String.Other */
|
||||
body .sr { color: #a31515 } /* Literal.String.Regex */
|
||||
body .s1 { color: #a31515 } /* Literal.String.Single */
|
||||
body .ss { color: #a31515 } /* Literal.String.Symbol */
|
||||
body .ss { color: #a31515 } /* Literal.String.Symbol
|
||||
|
||||
/*
|
||||
These styles are used to highlight each diff line.
|
||||
Note: for partial like highlight change to "display:block-inline"
|
||||
*/
|
||||
span.left_diff_change {
|
||||
background-color: #FFE5B5;
|
||||
display: block
|
||||
}
|
||||
span.left_diff_add {
|
||||
background-color: #eeeeee;
|
||||
display: block
|
||||
}
|
||||
span.left_diff_del {
|
||||
background-color: #ffdddd;
|
||||
display: block
|
||||
}
|
||||
span.lineno_q {
|
||||
display: block;
|
||||
}
|
||||
span.right_diff_change {
|
||||
background-color: #FFE5B5;
|
||||
display: block
|
||||
}
|
||||
span.right_diff_add {
|
||||
background-color: #ddffdd;
|
||||
display: block
|
||||
}
|
||||
span.right_diff_del {
|
||||
background-color: #eeeeee;
|
||||
display: block
|
||||
}
|
||||
span.clearbg {
|
||||
background-color: transparent;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue