From d275b2b468fe3aab60cd1caaa00ff5d6fc4c1a88 Mon Sep 17 00:00:00 2001 From: wagoodman Date: Mon, 26 Dec 2016 09:59:14 -0500 Subject: added themeing and minor fixes --- deps/codeformats/vs.css | 37 ++++++++++++++++++++++++++++++++++++- 1 file changed, 36 insertions(+), 1 deletion(-) (limited to 'deps/codeformats/vs.css') diff --git a/deps/codeformats/vs.css b/deps/codeformats/vs.css index a376fe1..b8046f5 100644 --- a/deps/codeformats/vs.css +++ b/deps/codeformats/vs.css @@ -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 */ \ No newline at end of file +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; +} \ No newline at end of file -- cgit