From: Jens Frank Date: Sat, 8 Jan 2005 03:51:22 +0000 (+0000) Subject: BUG#1283 Use underlining and borders to highlight additions/deletions in diff-view X-Git-Tag: 1.5.0alpha1~979 X-Git-Url: https://git.cyclocoop.org/admin/%7B%24plugin.url%7Cescape%7D?a=commitdiff_plain;h=25d1c7e214b1aee4da896e37546134799a1b1743;p=lhc%2Fweb%2Fwiklou.git BUG#1283 Use underlining and borders to highlight additions/deletions in diff-view --- diff --git a/skins/common/commonPrint.css b/skins/common/commonPrint.css index ce4b35de12..71ae2c8f27 100644 --- a/skins/common/commonPrint.css +++ b/skins/common/commonPrint.css @@ -259,3 +259,25 @@ div.gallerytext { padding: 2px 4px; } +/* +** Diff rendering +*/ +table.diff { background:white; } +td.diff-otitle { background:#ffffff; } +td.diff-ntitle { background:#ffffff; } +td.diff-addedline { + background:#ccffcc; + font-size: smaller; + border: solid 2px black; +} +td.diff-deletedline { + background:#ffffaa; + font-size: smaller; + border: dotted 2px black; +} +td.diff-context { + background:#eeeeee; + font-size: smaller; +} +span.diffchange { color: silver; font-weight: bold; text-decoration: underline; } +