-
Notifications
You must be signed in to change notification settings - Fork 191
/
Copy pathphp-diff.css
134 lines (133 loc) · 3.2 KB
/
php-diff.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
/**
* php-diff theme jdlx
* @author http://rexdev.de
* @see https://github.com/jdlx
*/
body {
background: none repeat scroll 0 0 silver;
font-family: Lucida Grande,Helvetica,Arial,sans-serif;
font-size: 12px;
color:#404040;
text-shadow: 0 1px 1px rgba(255, 255, 255, 0.9);
margin: 0;
padding: 10px;
}
hr {
height:0;
background:none;
border:0;
border-bottom:1px solid gray;
box-shadow: 0 3px 4px rgba(0, 0, 0, 1);
margin:20px 0 20px 0;
}
#Info-Block {
margin-left: 4.5em;
}
.Differences {
border-collapse: collapse;
border-spacing: 0;
empty-cells: show;
width: 100%;
border-radius: 4px 4px 4px 4px;
box-shadow: 0 1px 10px rgba(0, 0, 0, 0.8);
color:black;
}
.Differences thead {
background: url("top-edge.png") repeat-x scroll 0 100% #efefef;
}
.Differences tbody {
background: none repeat scroll 0 0 white;
}
.Differences thead th {
color: #000000;
height: 3em;
padding-left: 4.5em;
text-align: left;
}
.Differences tbody th {
background: none repeat scroll 0 0 #ECECEC;
border-bottom: 1px solid silver;
border-right: 1px solid #CFCFCF;
color: silver;
font-size: 12px;
padding: 1px 2px;
text-align: right;
vertical-align: top;
width: 4em;
}
.Differences tbody.Skipped th {
border-right: 0 none;
}
.Differences td {
font-family: monospace;
font-size: 12px;
padding: 1px 2px;
}
.Differences tbody.ChangeReplace {
border-bottom: 1px solid #A0B9E3;
border-top: 1px solid #A0B9E3;
}
.Differences tbody.ChangeInsert {
background: url("shadow.png") repeat-x scroll 0 0 transparent;
}
.Differences tbody.ChangeDelete {
background: url("shadow.png") repeat-x scroll 0 0 transparent;
}
.DifferencesSideBySide .ChangeInsert td.Left {
}
.DifferencesSideBySide .ChangeInsert td.Right {
background: none repeat scroll 0 0 #CCFFCC;
}
.DifferencesSideBySide .ChangeDelete td.Left {
background: none repeat scroll 0 0 #F9DADA;
}
.DifferencesSideBySide .ChangeDelete td.Right {
}
.DifferencesSideBySide .ChangeReplace .Left {
background: none repeat scroll 0 0 #F1F4FA;
}
.DifferencesSideBySide .ChangeReplace .Right {
background: none repeat scroll 0 0 #F1F4FA;
}
.Differences ins, .Differences del {
text-decoration: none;
}
.DifferencesSideBySide .ChangeReplace ins, .DifferencesSideBySide .ChangeReplace del {
background: none repeat scroll 0 0 #C8D5ED;
}
.Differences .Skipped {
background: url("context-break.png") repeat-x scroll 0 50% white;
height: 30px;
}
.Differences .Skipped tr th {
background-color: #ECECEC;
opacity: 0;
}
.DifferencesInline .ChangeReplace .Left, .DifferencesInline .ChangeDelete .Left {
background: none repeat scroll 0 0 #FFDDDD;
}
.DifferencesInline .ChangeReplace .Right, .DifferencesInline .ChangeInsert .Right {
background: none repeat scroll 0 0 #DDFFDD;
}
.DifferencesInline .ChangeReplace ins {
background: none repeat scroll 0 0 #99EE99;
}
.DifferencesInline .ChangeReplace del {
background: none repeat scroll 0 0 #EE9999;
}
pre {
overflow: auto;
width: 98%;
background:#fff;
color:#000;
padding:1%;
border-radius: 4px 4px 4px 4px;
box-shadow: 0 1px 10px rgba(0, 0, 0, 0.8);
}
h2 {
margin-top:30px;
}
a,a:visited {
color:#d11803;
text-decoration:none;
}