Project

General

Profile

Download (917 Bytes) Statistics
| Branch: | Tag: | Revision:
1
/**
2
 * @file
3
 * CSS styles for the diffs created by ./lib/class.Diff.php
4
 *
5
 * @copyright
6
 *   (C) 2007-2015 EDIT
7
 *   European Distributed Institute of Taxonomy
8
 *   http://www.e-taxonomy.eu
9
 *
10
 *   The contents of this module are subject to the Mozilla
11
 *   Public License Version 1.1.
12
 * @see http://www.mozilla.org/MPL/MPL-1.1.html
13
 */
14

    
15
.diff td{
16

    
17
    vertical-align:top;
18
    white-space:pre;
19
    white-space:pre-wrap;
20
    font-family:'Courier New',Courier,monospace;
21
    line-height:1.333;
22
    /*padding:0 0.667em;
23
    font-size:0.75em;
24
    l*/
25
}
26

    
27
.diff span{
28
    display:block;
29
    min-height:1em;
30
    margin-top:-1px;
31
    padding:0 3px;
32
}
33

    
34
* html .diff span{
35
    height:1em;
36
}
37

    
38
.diff span:first-child{
39
    margin-top:0;
40
}
41

    
42
.diffDeleted span{
43
    border:1px solid rgb(255,192,192);
44
    background:rgb(255,224,224);
45
}
46

    
47
.diffInserted span{
48
    border:1px solid rgb(192,255,192);
49
    background:rgb(224,255,224);
50
}
    (1-1/1)