-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathdiff.css
More file actions
160 lines (133 loc) · 3.08 KB
/
Copy pathdiff.css
File metadata and controls
160 lines (133 loc) · 3.08 KB
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
/*
* Styles for the Tag Diff
*/
span.diff-tag-html {
font-family: "Andale Mono" monospace;
font-size: 80%;
}
span.diff-tag-removed {
font-size: 100%;
text-decoration: line-through;
background-color: #fdc6c6; /* light red */
}
span.diff-tag-added {
font-size: 100%;
background-color: #ccffcc; /* light green */
}
span.diff-tag-conflict {
font-size: 100%;
background-color: #f781be; /* light rose */
}
/*
* Styles for the HTML Diff
*/
span.diff-html-added {
font-size: 100%;
background-color: #ccffcc; /* light green */
cursor: pointer;
}
span.diff-html-removed {
font-size: 100%;
text-decoration: line-through;
background-color: #fdc6c6; /* light red */
cursor: pointer;
}
span.diff-html-changed {
background: url(../images/diffunderline.gif) bottom repeat-x;
*background-color: #c6c6fd; /* light blue */
cursor: pointer;
}
span.diff-html-conflict {
/* background: url(../images/diffunderline.gif) bottom repeat-x; */
background-color: #f781be; /* light rose */
}
span.diff-html-selected {
background-color: #FF8800; /* light orange */
cursor: pointer;
}
span.diff-html-selected img{
border: 2px solid #FF8800; /* light orange */
}
span.diff-html-added img{
border: 2px solid #ccffcc;
}
span.diff-html-removed img{
border: 2px solid #fdc6c6;
}
span.diff-html-changed img{
border: 2px dotted #000099;
}
div.diff-removed-image, div.diff-added-image, div.diff-conflict-image {
height: 300px;
width: 200px;
position: absolute;
opacity : 0.55;
filter: alpha(opacity=55);
-moz-opacity: 0.55;
}
div.diff-removed-image, div.diff-added-image, div.diff-conflict-image {
margin-top: 2px;
margin-bottom: 2px;
margin-right: 2px;
margin-left: 2px;
}
div.diff-removed-image {
background-color: #fdc6c6;
background-image: url(../images/diffmin.gif);
}
div.diff-added-image {
background-color: #ccffcc;
background-image: url(../images/diffplus.gif);
background-repeat: no-repeat;
}
div.diff-conflict-image {
background-color: #f781be;
background-image: url(../images/diffconflict.gif);
background-repeat: no-repeat;
}
img.diff-icon {
background-color: #FF8800;
background-image: url(../images/bg_rounded.gif);
width: 16px;
height: 16px;
border: 0px none;
}
table.diff-tooltip-link, table.diff-tooltip-link-changed {
width: 100%;
text-align: center;
Vertical-align: middle;
}
table.diff-tooltip-link-changed {
border-top: thin dashed #000000;
margin-top: 3px;
padding-top: 3px
}
td.diff-tooltip-prev {
text-align: left;
}
td.diff-tooltip-next {
text-align: right;
}
table.diffpage-html-firstlast {
width: 100%;
Vertical-align: middle;
}
div.diff-topbar{
border-bottom: 2px solid #FF8800;
border-left: 1px solid #FF8800;
border-right: 1px solid #FF8800;
background-color: #FFF5F5;
}
a.diffpage-html-a, a.diffpage-html-a:hover, a.diffpage-html-a:link, a.diffpage-html-a:visited, a.diffpage-html-a:active {
text-decoration: none;
color: #FF8800;
}
.diffpage-html-firstlast a img, .dsydiff-prevnextnav a img {
vertical-align: middle;
}
ul.changelist {
padding-left: 15px;
}
body{
margin-top: 0px;
}