-
Notifications
You must be signed in to change notification settings - Fork 142
/
Copy pathcoverage.css
142 lines (116 loc) · 2.1 KB
/
coverage.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
135
136
137
138
139
140
141
142
* {
margin: 0;
padding: 0;
}
body {
font-size: 90%;
background-color: #fff;
font-family: tahoma, verdana, arial, sans-serif;
color: #3f3f3f;
}
div.content {
padding: 0.2em 0.3em 0.2em 0.4em;
width: 99%;
}
h1 {
font:normal 18px tahoma, sans-serif;
margin: 0.5em 0 0.5em 0;
color: #010101;
}
h2 {
margin: 0.5em 0 0.5em 0;
font:bold 14px tahoma, sans-serif;
color: #010101;
}
table.coverageStats {
width: 99%;
border-collapse: collapse;
}
table.overallStats {
width: 20%;
}
table.coverageStats th {
font-weight: bold;
text-align: left;
}
table.coverageStats th.coverageStat {
width: 20%;
}
table.coverageStats th.sortedDesc a {
background: #fff url(../.img/arrowDown.gif) no-repeat 100% 0;
padding-right: 20px;
}
table.coverageStats th.sortedAsc a {
background: #fff url(../.img/arrowUp.gif) no-repeat 100% 0;
padding-right: 20px;
}
table.coverageStats td, table.coverageStats th {
border: 1px solid #ccc;
padding: 2px;
}
a {
color: #0254D0;
text-decoration: none;
}
a:hover {
text-decoration: underline;
color: #0254D0;
}
div.footer {
margin: 2em 2em 2em 0.5em;
font-size: 85%;
text-align: left;
line-height: 140%;
}
div.header {
padding: 0.5em;
background-color: #E3E9EF;
color: #3773C9;
font-weight: bold;
font-size: 120%;
text-align: center;
}
div.sourceCode {
width: 99%;
white-space: pre;
border: 1px solid #ccc;
font-family: monospace;
padding: 0;
}
i {
background-color: #eee;
}
div.sourceCode b {
font-weight: normal;
}
div.sourceCode i {
font-style: normal;
width: 3em;
padding: 0 3px 0 0;
display: block;
float: left;
text-align: right;
border-right: 1px solid #ccc;
/*margin-right: 3px;*/
}
div.sourceCode .fc, div.sourceCode .fc i {
background-color: #ccffcc;
}
div.sourceCode .pc, div.sourceCode .pc i {
background-color: #ffffcc;
}
div.sourceCode .nc, div.sourceCode .nc i {
background-color: #ffcccc;
}
.percent, .absValue {
font-size: 90%;
}
.percent .green, .absValue .green {
color: limegreen;
}
.percent .red, .absValue .red {
color: red;
}
.percent .totalDiff {
color: #3f3f3f;
}