Skip to content

Commit 20d4de5

Browse files
committed
First commit
1 parent 9992a99 commit 20d4de5

36 files changed

+2917
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.idea/
2+
vendor/
3+
composer.lock

build/coverage/ProcessHandler.php.html

Lines changed: 232 additions & 0 deletions
Large diffs are not rendered by default.

build/coverage/css/bootstrap.min.css

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/coverage/css/nv.d3.min.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/coverage/css/style.css

Lines changed: 122 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,122 @@
1+
body {
2+
padding-top: 10px;
3+
}
4+
5+
.popover {
6+
max-width: none;
7+
}
8+
9+
.glyphicon {
10+
margin-right:.25em;
11+
}
12+
13+
.table-bordered>thead>tr>td {
14+
border-bottom-width: 1px;
15+
}
16+
17+
.table tbody>tr>td, .table thead>tr>td {
18+
padding-top: 3px;
19+
padding-bottom: 3px;
20+
}
21+
22+
.table-condensed tbody>tr>td {
23+
padding-top: 0;
24+
padding-bottom: 0;
25+
}
26+
27+
.table .progress {
28+
margin-bottom: inherit;
29+
}
30+
31+
.table-borderless th, .table-borderless td {
32+
border: 0 !important;
33+
}
34+
35+
.table tbody tr.covered-by-large-tests, li.covered-by-large-tests, tr.success, td.success, li.success, span.success {
36+
background-color: #dff0d8;
37+
}
38+
39+
.table tbody tr.covered-by-medium-tests, li.covered-by-medium-tests {
40+
background-color: #c3e3b5;
41+
}
42+
43+
.table tbody tr.covered-by-small-tests, li.covered-by-small-tests {
44+
background-color: #99cb84;
45+
}
46+
47+
.table tbody tr.danger, .table tbody td.danger, li.danger, span.danger {
48+
background-color: #f2dede;
49+
}
50+
51+
.table tbody td.warning, li.warning, span.warning {
52+
background-color: #fcf8e3;
53+
}
54+
55+
.table tbody td.info {
56+
background-color: #d9edf7;
57+
}
58+
59+
td.big {
60+
width: 117px;
61+
}
62+
63+
td.small {
64+
}
65+
66+
td.codeLine {
67+
font-family: monospace;
68+
white-space: pre;
69+
}
70+
71+
td span.comment {
72+
color: #888a85;
73+
}
74+
75+
td span.default {
76+
color: #2e3436;
77+
}
78+
79+
td span.html {
80+
color: #888a85;
81+
}
82+
83+
td span.keyword {
84+
color: #2e3436;
85+
font-weight: bold;
86+
}
87+
88+
pre span.string {
89+
color: #2e3436;
90+
}
91+
92+
span.success, span.warning, span.danger {
93+
margin-right: 2px;
94+
padding-left: 10px;
95+
padding-right: 10px;
96+
text-align: center;
97+
}
98+
99+
#classCoverageDistribution, #classComplexity {
100+
height: 200px;
101+
width: 475px;
102+
}
103+
104+
#toplink {
105+
position: fixed;
106+
left: 5px;
107+
bottom: 5px;
108+
outline: 0;
109+
}
110+
111+
svg text {
112+
font-family: "Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;
113+
font-size: 11px;
114+
color: #666;
115+
fill: #666;
116+
}
117+
118+
.scrollbox {
119+
height:245px;
120+
overflow-x:hidden;
121+
overflow-y:scroll;
122+
}

0 commit comments

Comments
 (0)