app/assets/stylesheets/diff.css in tawork-0.0.36 vs app/assets/stylesheets/diff.css in tawork-0.0.37
- old
+ new
@@ -10,5 +10,29 @@
.diff del, .diff ins, .diff span{white-space:pre-wrap;font-family:courier;}
.diff del strong{font-weight:normal;background:#fcc;}
.diff ins strong{font-weight:normal;background:#9f9;}
.diff li.diff-comment { display: none; }
.diff li.diff-block-info { background: none repeat scroll 0 0 gray; }
+
+span.diff-html-removed {
+ background: #fcc;
+ /* text-decoration: line-through; */
+ cursor: default;
+}
+
+span.diff-html-added {
+ background: #9f9;
+ cursor: default;
+}
+
+span.diff-html-changed {
+ border-bottom: dotted 2px red;
+ cursor: default;
+}
+
+[changetype="diff-added-image"] {
+ border: dotted 2px #9f9;
+}
+
+[changetype="diff-removed-image"] {
+ border: dotted 2px #fcc;
+}