]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - tests/PHPUnit/PHP/CodeCoverage/Report/HTML/Renderer/Template/style.css
Merge branch 'master' of github.com:sugarcrm/sugarcrm_dev
[Github/sugarcrm.git] / tests / PHPUnit / PHP / CodeCoverage / Report / HTML / Renderer / Template / style.css
1 /* All views: initial background and text color */
2 body
3 {
4   background-color: #fff;
5   color: #2e3436;
6   font-family: arial, helvetica, sans-serif;
7   font-size: 12px;
8   margin: 0 auto;
9   width: 100%;
10 }
11
12 /* All views: standard link format*/
13 a:link
14 {
15   color: #2e3436;
16   text-decoration: underline;
17 }
18
19 /* All views: standard link - visited format */
20 a:visited
21 {
22   color: #2e3436;
23   text-decoration: underline;
24 }
25
26 /* All views: standard link - activated format */
27 a:active
28 {
29   color: #2e3436;
30   text-decoration: underline;
31 }
32
33 /* All views: main title format */
34 td.title
35 {
36   text-align: center;
37   padding: 10px;
38   font-family: sans-serif;
39   font-style: italic;
40   font-weight: bold;
41   font-size: 1.6em;
42 }
43
44 /* All views: header item format */
45 td.headerItem
46 {
47   text-align: right;
48   padding-right: 6px;
49   font-family: sans-serif;
50   font-weight: bold;
51 }
52
53 /* All views: header item value format */
54 td.headerValue
55 {
56   text-align: left;
57   font-family: sans-serif;
58   font-weight: bold;
59 }
60
61 /* All views: header legend item format */
62 td.legendItem
63 {
64   text-align: right;
65   padding-right: 6px;
66   padding-top: 10px;
67   padding-bottom: 2px;
68   font-family: sans-serif;
69   font-weight: bold;
70 }
71
72 /* All views: header legend item value format */
73 td.legendValue
74 {
75   text-align: left;
76   padding-top: 10px;
77   padding-bottom: 2px;
78   color:  #2e3436;
79   font-family: sans-serif;
80   font-weight: bold;
81 }
82
83 /* All views: color of horizontal ruler */
84 td.ruler
85 {
86   background-color: #d3d7cf;
87 }
88
89 /* All views: version string format */
90 td.versionInfo
91 {
92   text-align: center;
93   padding-top: 2px;
94   font-family: sans-serif;
95   font-style: italic;
96 }
97
98 /* Directory view/File view (all)/Test case descriptions:
99 table headline format */
100 td.tableHead
101 {
102   text-align: center;
103   color: #ffffff;
104   background-color: #555753;
105   font-family: sans-serif;
106   font-weight: bold;
107 }
108
109 /* Directory view/File view (all): filename entry format */
110 td.coverItem, td.coverDirectory, td.coverFile
111 {
112   text-align: left;
113   padding-left: 10px;
114   padding-right: 20px;
115   background-color: #d3d7cf;
116   font-family: monospace;
117 }
118
119 td.coverDirectory
120 {
121   font-weight: bold;
122 }
123
124 /* Directory view/File view (all): bar-graph entry format*/
125 td.coverBar
126 {
127   padding-left: 10px;
128   padding-right: 10px;
129   background-color: #d3d7cf;
130   text-align:center;
131   width: 100px;
132 }
133
134 /* Directory view/File view (all): bar-graph outline color */
135 div.coverBarOutline
136 {
137   background-color: #fff;
138   border: 1px solid #2e3436;
139   height: 10px;
140   overflow:hidden;
141   width: 100px;
142 }
143
144 /* Directory view/File view (all): common style for bar-graph  */
145 div.coverBarOutline div.size
146 {
147     height: 10px; float:left;
148 }
149
150 /* Directory view/File view (all): bar-graph color no coverage rate */
151 div.coverBarOutline div.snow
152 {
153     background-color:#fff;
154 }
155
156 /* Directory view/File view (all): bar-graph color for low coverage rate */
157 div.coverBarOutline div.scarlet_red
158 {
159     background-color:#ef2929;
160 }
161
162 /* Directory view/File view (all): bar-graph color for middle coverage rate */
163 div.coverBarOutline div.butter
164 {
165     background-color:#fce94f;
166 }
167
168 /* Directory view/File view (all):  bar-graph color for high coverage rate */
169 div.coverBarOutline div.chameleon
170 {
171     background-color:#8ae234;
172 }
173
174 /* Directory view/File view (all): percentage entry for files with
175 no coverage rate */
176 td.coverPerNone
177 {
178   text-align: right;
179   padding-left: 10px;
180   padding-right: 10px;
181   background-color: #d3d7cf;
182   font-weight: bold;
183 }
184
185 /* Directory view/File view (all): line count entry for files with
186 no coverage rate */
187 td.coverNumNone
188 {
189   text-align: right;
190   padding-left: 10px;
191   padding-right: 10px;
192   background-color: #d3d7cf;
193   white-space: nowrap;
194 }
195
196 /* Directory view/File view (all): percentage entry for files with
197 high coverage rate */
198 td.coverPerHi
199 {
200   text-align: right;
201   padding-left: 10px;
202   padding-right: 10px;
203   background-color: #8ae234;
204   font-weight: bold;
205 }
206
207 /* Directory view/File view (all): line count entry for files with
208 high coverage rate */
209 td.coverNumHi
210 {
211   text-align: right;
212   padding-left: 10px;
213   padding-right: 10px;
214   background-color: #8ae234;
215   white-space: nowrap;
216 }
217
218 /* Directory view/File view (all): legend entry for high coverage
219 rate */
220 span.coverLegendHi
221 {
222   text-align: center;
223   padding-left: 10px;
224   padding-right: 10px;
225   background-color: #8ae234;
226 }
227
228 /* Directory view/File view (all): percentage entry for files with
229 medium coverage rate */
230 td.coverPerMed
231 {
232   text-align: right;
233   padding-left: 10px;
234   padding-right: 10px;
235   background-color: #fce94f;
236   font-weight: bold;
237 }
238
239 /* Directory view/File view (all): line count entry for files with
240 medium coverage rate */
241 td.coverNumMed
242 {
243   text-align: right;
244   padding-left: 10px;
245   padding-right: 10px;
246   background-color: #fce94f;
247   white-space: nowrap;
248 }
249
250 /* Directory view/File view (all): legend entry for medium coverage
251 rate */
252 span.coverLegendMed
253 {
254   text-align: center;
255   padding-left: 10px;
256   padding-right: 10px;
257   margin-top: 5px;
258   margin-bottom: 5px;
259   margin-right: 2px;
260   background-color: #fce94f;
261 }
262
263 /* Directory view/File view (all): percentage entry for files with
264 low coverage rate */
265 td.coverPerLo
266 {
267   text-align: right;
268   padding-left: 10px;
269   padding-right: 10px;
270   background-color: #f57900;
271   font-weight: bold;
272 }
273
274 /* Directory view/File view (all): line count entry for files with
275 low coverage rate */
276 td.coverNumLo
277 {
278   text-align: right;
279   padding-left: 10px;
280   padding-right: 10px;
281   background-color: #f57900;
282   white-space: nowrap;
283 }
284
285 /* Directory view/File view (all): legend entry for low coverage
286 rate */
287 span.coverLegendLo
288 {
289   text-align: center;
290   padding-left: 10px;
291   padding-right: 10px;
292   margin-right: 2px;
293   background-color: #f57900;
294 }
295
296 /* File view (all): "show/hide details" link format */
297 a.detail:link
298 {
299   color: #ffffff;
300 }
301
302 /* File view (all): "show/hide details" link - visited format */
303 a.detail:visited
304 {
305   color: #ffffff;
306 }
307
308 /* File view (all): "show/hide details" link - activated format */
309 a.detail:active
310 {
311   color: #ffffff;
312 }
313
314 /* File view (detail): test name table headline format */
315 td.testNameHead
316 {
317   text-align: left;
318   padding-left: 10px;
319   background-color: #729fcf;
320   font-family: sans-serif;
321   font-weight: bold;
322 }
323
324 /* File view (detail): test lines table headline format */
325 td.testLinesHead
326 {
327   text-align: center;
328   background-color: #729fcf;
329   font-family: sans-serif;
330   font-weight: bold;
331 }
332
333 /* File view (detail): test name entry */
334 td.testName
335 {
336   text-align: left;
337   padding-left: 10px;
338   background-color: #729fcf;
339 }
340
341 /* File view (detail): test percentage entry */
342 td.testPer
343 {
344   text-align: right;
345   vertical-align: top;
346   padding-left: 10px;
347   padding-right: 10px;
348   background-color: #729fcf;
349 }
350
351 /* File view (detail): test lines count entry */
352 td.testNum
353 {
354   text-align: right;
355   vertical-align: top;
356   padding-left: 10px;
357   padding-right: 10px;
358   background-color: #729fcf;
359   white-space: nowrap;
360 }
361
362 /* Test case descriptions: test name format*/
363 dt
364 {
365   font-family: sans-serif;
366   font-weight: bold;
367 }
368
369 /* Test case descriptions: description table body */
370 td.testDescription
371 {
372   padding-top: 10px;
373   padding-left: 30px;
374   padding-bottom: 10px;
375   padding-right: 30px;
376   background-color: #729fcf;
377 }
378
379 /* Source code view: source code format */
380 pre.source
381 {
382   font-family: monospace;
383   white-space: pre;
384 }
385
386 /* Source code view: line number format */
387 span.lineNum
388 {
389   background-color: #d3d7cf;
390 }
391
392 span.lineNum a {
393   text-decoration: none;
394 }
395
396 /* Source code view: format for lines which were executed */
397 span.lineCov
398 {
399   background-color: #8ae234;
400 }
401
402 /* Source code view: format for Cov legend */
403 span.LegendCov
404 {
405   text-align: center;
406   padding-left: 10px;
407   padding-right: 10px;
408   margin-right: 2px;
409   background-color: #8ae234;
410 }
411
412 /* Source code view: format for lines which were not executed */
413 span.lineNoCov
414 {
415   background-color: #f57900;
416 }
417
418 /* Source code view: format for NoCov legend */
419 span.LegendNoCov
420 {
421   text-align: center;
422   padding-left: 10px;
423   padding-right: 10px;
424   margin-right: 2px;
425   background-color: #f57900;
426 }
427
428 /* Source code view: format for lines which are dead code */
429 span.lineDeadCode
430 {
431   background-color: #d3d7cf;
432 }
433
434 /* Source code view: format for NoCov legend */
435 span.LegendDeadCode
436 {
437   text-align: center;
438   padding-left: 10px;
439   padding-right: 10px;
440   margin-right: 2px;
441   background-color: #d3d7cf;
442 }
443
444 /* Test view: format for tests which have passed */
445 li.testPassed
446 {
447 }
448
449 /* Test view: format for tests which failed */
450 li.testFailure
451 {
452   background-color: #f57900;
453 }
454
455 /* Test view: format for tests which failed with an error */
456 li.testError
457 {
458   background-color: #f57900;
459 }
460
461 /* Test view: format for incomplete and skipped tests */
462 li.testIncomplete
463 {
464   background-color: #fcaf3e;
465 }
466
467 /* CRAP */
468 td.crap
469 {
470   text-align: right;
471   padding-left: 10px;
472   padding-right: 20px;
473   background-color: #d3d7cf;
474 }
475
476 pre span.comment {
477   color: #888a85;
478 }
479
480 pre span.default {
481   color: #2e3436;
482 }
483
484 pre span.html {
485   color: #888a85;
486 }
487
488 pre span.keyword {
489   color: #2e3436;
490   font-weight: bold;
491 }
492
493 pre span.string {
494   color: #2e3436;
495 }
496
497 #classCoverageDistribution, #classComplexity {
498         height: 200px;
499         width: 475px;
500 }