From 25d1c7e214b1aee4da896e37546134799a1b1743 Mon Sep 17 00:00:00 2001 From: Jens Frank Date: Sat, 8 Jan 2005 03:51:22 +0000 Subject: [PATCH] BUG#1283 Use underlining and borders to highlight additions/deletions in diff-view --- skins/common/commonPrint.css | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) 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; } + -- 2.20.1