Subversion-Projekte lars-tiefland.php_share

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 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
}
131
 
132
/* Directory view/File view (all): bar-graph outline color */
133
td.coverBarOutline
134
{
135
  background-color: #2e3436;
136
}
137
 
138
/* Directory view/File view (all): percentage entry for files with
139
no coverage rate */
140
td.coverPerNone
141
{
142
  text-align: right;
143
  padding-left: 10px;
144
  padding-right: 10px;
145
  background-color: #d3d7cf;
146
  font-weight: bold;
147
}
148
 
149
/* Directory view/File view (all): line count entry for files with
150
no coverage rate */
151
td.coverNumNone
152
{
153
  text-align: right;
154
  padding-left: 10px;
155
  padding-right: 10px;
156
  background-color: #d3d7cf;
157
  white-space: nowrap;
158
}
159
 
160
/* Directory view/File view (all): percentage entry for files with
161
high coverage rate */
162
td.coverPerHi
163
{
164
  text-align: right;
165
  padding-left: 10px;
166
  padding-right: 10px;
167
  background-color: #8ae234;
168
  font-weight: bold;
169
}
170
 
171
/* Directory view/File view (all): line count entry for files with
172
high coverage rate */
173
td.coverNumHi
174
{
175
  text-align: right;
176
  padding-left: 10px;
177
  padding-right: 10px;
178
  background-color: #8ae234;
179
  white-space: nowrap;
180
}
181
 
182
/* Directory view/File view (all): legend entry for high coverage
183
rate */
184
span.coverLegendHi
185
{
186
  text-align: center;
187
  padding-left: 10px;
188
  padding-right: 10px;
189
  background-color: #8ae234;
190
}
191
 
192
/* Directory view/File view (all): percentage entry for files with
193
medium coverage rate */
194
td.coverPerMed
195
{
196
  text-align: right;
197
  padding-left: 10px;
198
  padding-right: 10px;
199
  background-color: #fce94f;
200
  font-weight: bold;
201
}
202
 
203
/* Directory view/File view (all): line count entry for files with
204
medium coverage rate */
205
td.coverNumMed
206
{
207
  text-align: right;
208
  padding-left: 10px;
209
  padding-right: 10px;
210
  background-color: #fce94f;
211
  white-space: nowrap;
212
}
213
 
214
/* Directory view/File view (all): legend entry for medium coverage
215
rate */
216
span.coverLegendMed
217
{
218
  text-align: center;
219
  padding-left: 10px;
220
  padding-right: 10px;
221
  margin-top: 5px;
222
  margin-bottom: 5px;
223
  margin-right: 2px;
224
  background-color: #fce94f;
225
}
226
 
227
/* Directory view/File view (all): percentage entry for files with
228
low coverage rate */
229
td.coverPerLo
230
{
231
  text-align: right;
232
  padding-left: 10px;
233
  padding-right: 10px;
234
  background-color: #f57900;
235
  font-weight: bold;
236
}
237
 
238
/* Directory view/File view (all): line count entry for files with
239
low coverage rate */
240
td.coverNumLo
241
{
242
  text-align: right;
243
  padding-left: 10px;
244
  padding-right: 10px;
245
  background-color: #f57900;
246
  white-space: nowrap;
247
}
248
 
249
/* Directory view/File view (all): legend entry for low coverage
250
rate */
251
span.coverLegendLo
252
{
253
  text-align: center;
254
  padding-left: 10px;
255
  padding-right: 10px;
256
  margin-right: 2px;
257
  background-color: #f57900;
258
}
259
 
260
/* File view (all): "show/hide details" link format */
261
a.detail:link
262
{
263
  color: #ffffff;
264
}
265
 
266
/* File view (all): "show/hide details" link - visited format */
267
a.detail:visited
268
{
269
  color: #ffffff;
270
}
271
 
272
/* File view (all): "show/hide details" link - activated format */
273
a.detail:active
274
{
275
  color: #ffffff;
276
}
277
 
278
/* File view (detail): test name table headline format */
279
td.testNameHead
280
{
281
  text-align: left;
282
  padding-left: 10px;
283
  background-color: #729fcf;
284
  font-family: sans-serif;
285
  font-weight: bold;
286
}
287
 
288
/* File view (detail): test lines table headline format */
289
td.testLinesHead
290
{
291
  text-align: center;
292
  background-color: #729fcf;
293
  font-family: sans-serif;
294
  font-weight: bold;
295
}
296
 
297
/* File view (detail): test name entry */
298
td.testName
299
{
300
  text-align: left;
301
  padding-left: 10px;
302
  background-color: #729fcf;
303
}
304
 
305
/* File view (detail): test percentage entry */
306
td.testPer
307
{
308
  text-align: right;
309
  vertical-align: top;
310
  padding-left: 10px;
311
  padding-right: 10px;
312
  background-color: #729fcf;
313
}
314
 
315
/* File view (detail): test lines count entry */
316
td.testNum
317
{
318
  text-align: right;
319
  vertical-align: top;
320
  padding-left: 10px;
321
  padding-right: 10px;
322
  background-color: #729fcf;
323
  white-space: nowrap;
324
}
325
 
326
/* Test case descriptions: test name format*/
327
dt
328
{
329
  font-family: sans-serif;
330
  font-weight: bold;
331
}
332
 
333
/* Test case descriptions: description table body */
334
td.testDescription
335
{
336
  padding-top: 10px;
337
  padding-left: 30px;
338
  padding-bottom: 10px;
339
  padding-right: 30px;
340
  background-color: #729fcf;
341
}
342
 
343
/* Source code view: source code format */
344
pre.source
345
{
346
  font-family: monospace;
347
  white-space: pre;
348
}
349
 
350
/* Source code view: line number format */
351
span.lineNum
352
{
353
  background-color: #d3d7cf;
354
}
355
 
356
span.lineNum a {
357
  text-decoration: none;
358
}
359
 
360
/* Source code view: format for lines which were executed */
361
span.lineCov
362
{
363
  background-color: #8ae234;
364
}
365
 
366
/* Source code view: format for Cov legend */
367
span.LegendCov
368
{
369
  text-align: center;
370
  padding-left: 10px;
371
  padding-right: 10px;
372
  margin-right: 2px;
373
  background-color: #8ae234;
374
}
375
 
376
/* Source code view: format for lines which were not executed */
377
span.lineNoCov
378
{
379
  background-color: #f57900;
380
}
381
 
382
/* Source code view: format for NoCov legend */
383
span.LegendNoCov
384
{
385
  text-align: center;
386
  padding-left: 10px;
387
  padding-right: 10px;
388
  margin-right: 2px;
389
  background-color: #f57900;
390
}
391
 
392
/* Source code view: format for lines which are dead code */
393
span.lineDeadCode
394
{
395
  background-color: #d3d7cf;
396
}
397
 
398
/* Source code view: format for NoCov legend */
399
span.LegendDeadCode
400
{
401
  text-align: center;
402
  padding-left: 10px;
403
  padding-right: 10px;
404
  margin-right: 2px;
405
  background-color: #d3d7cf;
406
}
407
 
408
/* Test view: format for tests which have passed */
409
li.testPassed
410
{
411
}
412
 
413
/* Test view: format for tests which failed */
414
li.testFailure
415
{
416
  background-color: #f57900;
417
}
418
 
419
/* Test view: format for tests which failed with an error */
420
li.testError
421
{
422
  background-color: #f57900;
423
}
424
 
425
/* Test view: format for incomplete and skipped tests */
426
li.testIncomplete
427
{
428
  background-color: #fcaf3e;
429
}
430
 
431
pre span.comment {
432
  color: #888a85;
433
}
434
 
435
pre span.default {
436
  color: #2e3436;
437
}
438
 
439
pre span.html {
440
  color: #888a85;
441
}
442
 
443
pre span.keyword {
444
  color: #2e3436;
445
  font-weight: bold;
446
}
447
 
448
pre span.string {
449
  color: #2e3436;
450
}