summaryrefslogtreecommitdiff
path: root/deps/codeformats/xcode.css
diff options
context:
space:
mode:
authorwagoodman <wagoodman@gmail.com>2016-12-26 09:59:14 -0500
committerwagoodman <wagoodman@gmail.com>2016-12-26 09:59:14 -0500
commitd275b2b468fe3aab60cd1caaa00ff5d6fc4c1a88 (patch)
treedc78082fb9bb18d15a255ac91f1e652de671f103 /deps/codeformats/xcode.css
parent29d732b85f7b4ef27369d047f41d1303d3dd8968 (diff)
downloadwsdiff-d275b2b468fe3aab60cd1caaa00ff5d6fc4c1a88.tar.gz
wsdiff-d275b2b468fe3aab60cd1caaa00ff5d6fc4c1a88.tar.bz2
wsdiff-d275b2b468fe3aab60cd1caaa00ff5d6fc4c1a88.zip
added themeing and minor fixes
Diffstat (limited to 'deps/codeformats/xcode.css')
-rw-r--r--deps/codeformats/xcode.css37
1 files changed, 36 insertions, 1 deletions
diff --git a/deps/codeformats/xcode.css b/deps/codeformats/xcode.css
index 719fabb..c0b847b 100644
--- a/deps/codeformats/xcode.css
+++ b/deps/codeformats/xcode.css
@@ -54,4 +54,39 @@ body .bp { color: #5B269A } /* Name.Builtin.Pseudo */
body .vc { color: #000000 } /* Name.Variable.Class */
body .vg { color: #000000 } /* Name.Variable.Global */
body .vi { color: #000000 } /* Name.Variable.Instance */
-body .il { color: #1C01CE } /* Literal.Number.Integer.Long */ \ No newline at end of file
+body .il { color: #1C01CE } /* Literal.Number.Integer.Long */
+
+/*
+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