Skip to content

Commit 495f01c

Browse files
committed
Add report
1 parent d7b974a commit 495f01c

40 files changed

+6142
-0
lines changed

docs/coverage/css/coverage.css

Lines changed: 168 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,168 @@
1+
/*
2+
* Copyright 2000-2021 JetBrains s.r.o.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
17+
* {
18+
margin: 0;
19+
padding: 0;
20+
}
21+
22+
body {
23+
background-color: #fff;
24+
font-family: helvetica neue, tahoma, arial, sans-serif;
25+
font-size: 82%;
26+
color: #151515;
27+
}
28+
29+
h1 {
30+
margin: 0.5em 0;
31+
color: #010101;
32+
font-weight: normal;
33+
font-size: 18px;
34+
}
35+
36+
h2 {
37+
margin: 0.5em 0;
38+
color: #010101;
39+
font-weight: normal;
40+
font-size: 16px;
41+
}
42+
43+
a {
44+
color: #1564C2;
45+
text-decoration: none;
46+
}
47+
48+
a:hover {
49+
text-decoration: underline;
50+
}
51+
52+
i {
53+
background-color: #eee;
54+
}
55+
56+
span.separator {
57+
color: #9BA9BA;
58+
padding-left: 5px;
59+
padding-right: 5px;
60+
}
61+
62+
div.content {
63+
width: 99%;
64+
}
65+
66+
table.coverageStats {
67+
width: 100%;
68+
border-collapse: collapse;
69+
}
70+
71+
table.overallStats {
72+
width: 20%;
73+
}
74+
75+
table.coverageStats td, table.coverageStats th {
76+
padding: 4px 2px;
77+
border-bottom: 1px solid #ccc;
78+
}
79+
80+
table.coverageStats th {
81+
background-color: #959BA4;
82+
border: none;
83+
font-weight: bold;
84+
text-align: left;
85+
color: #FFF;
86+
}
87+
88+
table.coverageStats th.coverageStat {
89+
width: 20%;
90+
}
91+
92+
table.coverageStats th a {
93+
color: #FFF;
94+
}
95+
96+
table.coverageStats th a:hover {
97+
text-decoration: none;
98+
}
99+
100+
table.coverageStats th.sortedDesc a {
101+
background: url(../img/arrowDown.gif) no-repeat 100% 2px;
102+
padding-right: 20px;
103+
}
104+
105+
table.coverageStats th.sortedAsc a {
106+
background: url(../img/arrowUp.gif) no-repeat 100% 2px;
107+
padding-right: 20px;
108+
}
109+
110+
div.footer {
111+
margin: 2em .5em;
112+
font-size: 85%;
113+
text-align: left;
114+
line-height: 140%;
115+
}
116+
117+
div.sourceCode {
118+
width: 100%;
119+
border: 1px solid #ccc;
120+
font: normal 12px 'Menlo', 'Bitstream Vera Sans Mono', 'Courier New', 'Courier', monospace;
121+
white-space: pre;
122+
}
123+
124+
div.sourceCode b {
125+
font-weight: normal;
126+
}
127+
128+
div.sourceCode i {
129+
display: block;
130+
float: left;
131+
width: 3em;
132+
padding-right: 3px;
133+
border-right: 1px solid #ccc;
134+
font-style: normal;
135+
text-align: right;
136+
}
137+
138+
div.sourceCode i.no-highlight span.number {
139+
color: #151515;
140+
}
141+
142+
div.sourceCode .fc, div.sourceCode .fc i {
143+
background-color: #cfc;
144+
}
145+
146+
div.sourceCode .pc, div.sourceCode .pc i {
147+
background-color: #ffc;
148+
}
149+
150+
div.sourceCode .nc, div.sourceCode .nc i {
151+
background-color: #fcc;
152+
}
153+
154+
.percent, .absValue {
155+
font-size: 90%;
156+
}
157+
158+
.percent .green, .absValue .green {
159+
color: #32cc32;
160+
}
161+
162+
.percent .red, .absValue .red {
163+
color: #f00;
164+
}
165+
166+
.percent .totalDiff {
167+
color: #3f3f3f;
168+
}
Lines changed: 153 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,153 @@
1+
/*
2+
* Copyright 2000-2021 JetBrains s.r.o.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
17+
/*
18+
19+
Intellij Idea-like styling (c) Vasily Polovnyov <[email protected]>
20+
21+
*/
22+
23+
pre code {
24+
display: block; padding: 0.5em;
25+
color: #000;
26+
background: #fff;
27+
}
28+
29+
pre .subst,
30+
pre .title {
31+
font-weight: normal;
32+
color: #000;
33+
}
34+
35+
pre .comment,
36+
pre .template_comment,
37+
pre .javadoc,
38+
pre .diff .header {
39+
color: #808080;
40+
font-style: italic;
41+
}
42+
43+
pre .annotation,
44+
pre .decorator,
45+
pre .preprocessor,
46+
pre .doctype,
47+
pre .pi,
48+
pre .chunk,
49+
pre .shebang,
50+
pre .apache .cbracket,
51+
pre .input_number,
52+
pre .http .title {
53+
color: #808000;
54+
}
55+
56+
pre .tag,
57+
pre .pi {
58+
background: #efefef;
59+
}
60+
61+
/* leonid.khachaturov: redefine background as it conflicts with change highlighting we apply on top of source highlighting */
62+
pre .changeAdded .tag,
63+
pre .changeRemoved .tag,
64+
pre .changeAdded .pi,
65+
pre .changeRemoved .pi {
66+
background: transparent;
67+
}
68+
69+
/* leonid.khachaturov: redefine .comment from main.css */
70+
pre .comment {
71+
margin: 0;
72+
padding: 0;
73+
font-size: 100%;
74+
}
75+
76+
pre .tag .title,
77+
pre .id,
78+
pre .attr_selector,
79+
pre .pseudo,
80+
pre .literal,
81+
pre .keyword,
82+
pre .hexcolor,
83+
pre .css .function,
84+
pre .ini .title,
85+
pre .css .class,
86+
pre .list .title,
87+
pre .nginx .title,
88+
pre .tex .command,
89+
pre .request,
90+
pre .status {
91+
font-weight: bold;
92+
color: #000080;
93+
}
94+
95+
pre .attribute,
96+
pre .rules .keyword,
97+
pre .number,
98+
pre .date,
99+
pre .regexp,
100+
pre .tex .special {
101+
font-weight: bold;
102+
color: #0000ff;
103+
}
104+
105+
pre .number,
106+
pre .regexp {
107+
font-weight: normal;
108+
}
109+
110+
pre .string,
111+
pre .value,
112+
pre .filter .argument,
113+
pre .css .function .params,
114+
pre .apache .tag {
115+
color: #008000;
116+
font-weight: bold;
117+
}
118+
119+
pre .symbol,
120+
pre .ruby .symbol .string,
121+
pre .ruby .symbol .keyword,
122+
pre .ruby .symbol .keymethods,
123+
pre .char,
124+
pre .tex .formula {
125+
color: #000;
126+
background: #d0eded;
127+
font-style: italic;
128+
}
129+
130+
pre .phpdoc,
131+
pre .yardoctag,
132+
pre .javadoctag {
133+
text-decoration: underline;
134+
}
135+
136+
pre .variable,
137+
pre .envvar,
138+
pre .apache .sqbracket,
139+
pre .nginx .built_in {
140+
color: #660e7a;
141+
}
142+
143+
pre .addition {
144+
background: #baeeba;
145+
}
146+
147+
pre .deletion {
148+
background: #ffc8bd;
149+
}
150+
151+
pre .diff .change {
152+
background: #bccff9;
153+
}

docs/coverage/img/arrowDown.gif

89 Bytes
Loading

docs/coverage/img/arrowUp.gif

91 Bytes
Loading

0 commit comments

Comments
 (0)