source: rtems-tools/tester/covoar/covoar.css @ 3e187ba

5
Last change on this file since 3e187ba was 100f517, checked in by Chris Johns <chrisj@…>, on 05/09/14 at 11:50:37

covoar: Merger the covoar source from rtems-testing.git.

Use waf to build covoar.

  • Property mode set to 100644
File size: 6.7 KB
Line 
1body {
2    background: rgb(253,253,253);
3    color: rgb(0,0,0);
4    font-family: helvetica, sans-serif;
5    font-size: 1em;
6    line-height: 1.4;
7    margin: 5px, 5px, 5px, 5px;
8    padding: 0;
9}
10
11a:link {
12    color: rgb(180, 50, 50);
13    font-family: helvetica, sans-serif;
14    font-size: 1.0em;
15}
16
17a:visited {
18    color: purple;
19    font-family: helvetica, sans-serif;
20    font-size: 1.0em;
21}
22
23a:hover {
24    color: rgb(0, 0, 0);
25    font-family: helvetica, sans-serif;
26    font-size: 1.0em;
27}
28
29a:active {
30    color: red;
31    font-family: helvetica, sans-serif;
32    font-size: 1.0em;
33}
34
35.code {
36    background: rgb(255,255,255);
37    font-family: courier, sans-serif;
38    font-size: 0.9em;
39    font-weight: bold;
40    line-height: 0.9;
41    margin-top: 0.0;
42    margin-bottom: 0.4em;
43    text-align: left;
44    padding-right: 10px;
45}
46
47.codeExecuted {
48    background: rgb(255,255,255);
49    font-family: courier, sans-serif;
50    font-size: 0.9em;
51    line-height: 0.9;
52    margin-top: 0.0;
53    margin-bottom: 0.4em;
54    text-align: left;
55    padding-right: 10px;
56}
57
58.codeNotExecuted {
59    background: rgb(255,255,255);
60    color: red;
61    font-family: courier, sans-serif;
62    font-size: 0.9em;
63    line-height: 0.9;
64    margin-top: 0.0;
65    margin-bottom: 0.4em;
66    text-align: left;
67    padding-right: 10px;
68}
69
70.codeAlwaysTaken {
71    background: rgb(255,255,255);
72    color: green;
73    font-family: courier, sans-serif;
74    font-size: 0.9em;
75    line-height: 0.9;
76    margin-top: 0.0;
77    margin-bottom: 0.4em;
78    text-align: left;
79    padding-right: 10px;
80}
81
82.codeNeverTaken {
83    background: rgb(255,255,255);
84    color: blue;
85    font-family: courier, sans-serif;
86    font-size: 0.9em;
87    line-height: 0.9;
88    margin-top: 0.0;
89    margin-bottom: 0.4em;
90    text-align: left;
91    padding-right: 10px;
92}
93
94.branchesEven {
95    background: rgb(255,255,255);
96    font-family: courier, sans-serif;
97    font-size: 0.9em;
98    line-height: 0.9;
99    margin-top: 0.0;
100    margin-bottom: 0.4em;
101    text-align: left;
102    padding-right: 10px;
103}
104
105.branchesOdd {
106    background: yellow;
107    font-family: courier, sans-serif;
108    font-size: 0.9em;
109    line-height: 0.9;
110    margin-top: 0.0;
111    margin-bottom: 0.4em;
112    text-align: left;
113    padding-right: 10px;
114}
115
116.covoar-table {
117    border-collapse: none;
118    background:black;
119    border:1px solid black;
120}
121
122.covoar-th {
123    text-align: center;
124}
125
126table.covoar {
127        border:1px solid black;
128        border-collapse:collapse;
129}
130table.covoar th, table.covoar td {
131        border:1px solid #aaaaaa;
132        padding: 2px 15px 2px 15px;
133}
134table.covoar thead th {
135        background-color:#A4BC92;
136}
137table.covoar tfoot td {
138        background-color:#A4BC92;
139}
140
141table.covoar tr.tbody_header {
142        font-weight:bold;
143        text-align:center;
144        background-color:#dddddd;
145}
146
147table.covoar a.pagelink {
148        padding-left:5px;
149        padding-right:5px;
150        border:1px solid #666666;
151        margin:0px 5px 0px 5px;
152}
153table.covoar a.currentpage {
154        background-color:yellow;
155}
156
157/* Sorting */
158th.table-sortable {
159    border:1px solid black;
160    color: #F8F8F8;
161    background: #A4BC92;
162        cursor:pointer;
163        background-image:url("05_unsorted.gif");
164        background-position:center left;
165        background-repeat:no-repeat;
166        padding-left:12px;
167}
168th.table-sorted-asc {
169        background-image:url("05_ascending.gif");
170        background-position:center left;
171        background-repeat:no-repeat;
172}
173th.table-sorted-desc {
174        background-image:url("05_descending.gif");
175        background-position:center left;
176        background-repeat:no-repeat;
177}
178th.table-filtered {
179        background-image:url("filter.gif");
180        background-position:center left;
181        background-repeat:no-repeat;
182}
183select.table-autofilter {
184        font-size:smaller;
185}
186
187/* Icons box */
188.iconset {
189        margin:5px;
190        border:1px solid #cccccc;
191        border-color:#cccccc #666666 #666666 #cccccc;
192        text-align:center;
193        cursor:pointer;
194        width:100px;
195}
196.iconset img {
197        margin:3px;
198}
199
200.covoar-tr-first {
201    color: #F8F8F8;
202    background: #A4BC92;
203}
204
205tr.alternate {
206    background: #CBE4B1;
207}
208
209/* Examples which stray from the default */
210table.altstripe tr.alternate2 {
211        background-color:#CBE4B1;
212}
213
214.covoar-tr-odd {
215    background: #CBE4B1;
216}
217
218.covoar-tr-even {
219    background: #DBE5C6;
220}
221
222.heading {
223    background: rgb(250,250,250);
224    background-image: url("http://www.rtems.org/logos/rtems_logo.jpg");
225    background-repeat: no-repeat;
226    color: rgb(55,55,55);
227    font-size: 1.5em;
228    height: 140px;
229    padding-top: 20px;
230    padding-left: 300px;
231}
232
233.heading-title {
234    text-align:  center;
235    color: rgb(0,0,0);
236    font-size: 3.5em;
237    font-weight: bold;
238    line-height: 0.9;
239    padding-top: 5px;
240    padding-left: 0px;
241    text-align:  center;
242    width: 100%;
243}
244
245.datetime {
246    color: rgb(55,55,55);
247    font-size: 1.0em;
248    padding-top: 5px;
249    padding-left: 0px;
250    text-align:  center;
251    width: 100%;
252}
253
254.info {
255    color: rgb(55,55,55);
256    font-size: 0.6em;
257    padding-top: 5px;
258    padding-left: 00px;
259    text-align:  center;
260    width: 100%;
261}
262
263.stats-table {
264    background: rgb(225,225,225);
265    font-size: 0.9em;
266    border: 1px solid rgb(200, 200, 200);
267    padding: 0;
268    margin-top: 3px;
269    margin-left: 10px;
270    width: 70%;
271}
272
273.stats-table-target {
274    background: rgb(243,243,243);
275    font-size: 1.2em;
276    padding-left: 10px;
277    text-align: left;
278}
279
280.stats-target-results {
281    background: rgb(243,243,243);
282    font-size: 0.9em;
283    text-align: right;
284    padding-right: 10px;
285}
286
287.stats-target-good {
288    background: rgb(30,230,30);
289    font-size: 0.9em;
290    text-align: right;
291    padding-right: 10px;
292}
293
294.stats-target-good {
295    background: rgb(50,180,50);
296    color: rgb(230,230,230);
297    font-size: 0.9em;
298    text-align: center;
299    padding-right: 10px;
300}
301
302.stats-target-bad {
303    background: rgb(180,50,50);
304    color: rgb(230,230,230);
305    font-size: 0.9em;
306    text-align: center;
307    padding-right: 10px;
308}
309
310.stats-table-top {
311    background: rgb(243,243,243);
312    color: rgb(0,0,0);
313    font-size: 0.9em;
314    padding-left: 2px;
315}
316
317.stats-table-row {
318    background: rgb(253,253,253);
319    font-size: 0.9em;
320    padding: 1px;
321    text-align: right;
322}
323
324.error-table {
325    font-size: 0.9em;
326    border: 1px solid rgb(200, 200, 200);
327    padding: 0;
328    margin-left: 10px;
329    width: 96%;
330}
331
332.error-table-top {
333    background: rgb(225,225,225);
334    color: rgb(0,0,0);
335    font-size: 0.9em;
336    padding-left: 2px;
337}
338
339.error-table-on {
340    background: rgb(225,225,225);
341    font-size: 0.9em;
342    padding-left: 2px;
343}
344
345.error-table-off {
346    background: rgb(253,253,253);
347    font-size: 0.9em;
348    padding-left: 2px;
349}
350
351.error-table-dups {
352    text-align: right;
353    padding-right: 2px;
354}
355
356.error-table-error {
357    background: rgb(255,150,150);
358    font-size: 0.9em;
359    padding-left: 2px;
360}
361
362.error-table-warning {
363    font-size: 0.9em;
364    padding-left: 2px;
365}
366
367.navbar {
368    margin-left: auto;
369    margin-right: auto;
370    margin-top: 10px;
371    width: 40%;
372}
Note: See TracBrowser for help on using the repository browser.