Clean up the output from build_xhtml.pl even more, and add more css fun.
[build-farm.git] / web / build_farm.css
1
2 /* log is the id on the build log divisions */
3 #log .name, #log .status {
4         display: inline;
5         font-weight: bold;
6         font-family: sans-serif;
7 }
8 #log .status.failed {
9         color: rgb(153, 0, 0);;
10 }
11 #log .status.passed {
12         color: rgb(0, 153, 0);
13 }
14 #log .output {
15         color: rgb(0, 0, 0);
16         font-family: monospace;
17 }
18 #log div.unit {
19         margin: 5px;
20         padding: 10px;
21         border: 2px solid black;
22 }
23 #log div.unit.passed {
24         background-color: rgb(180, 255, 180);
25 }
26 #log div.unit.failed {
27         background-color: rgb(255, 180, 180);
28 }
29 #log .unit.failed .output {
30         display: block;
31 }
32 #log .unit.passed .output {
33         display: none;
34 }
35 #log div.output#output-stderr-0 {
36         display: none;
37 }
38 #log img {
39         border: none;
40 }
41 #log a {
42         text-decoration: none;
43 }
44 #log a:hover, #log a:active {
45         text-decoration: underline;
46 }
47
48 /* generically, status correspond to the ok/ok/ok/ok strings */
49 .status.passed { 
50         color: rgb(0, 128, 0);
51 }
52
53 .status.failed { 
54         color: rgb(255, 0, 0);
55 }
56
57 .status.unknown { 
58         color: rgb(0, 0, 255);
59 }
60
61 .summary td.status { 
62         text-align: center;
63 }
64
65 .summary .tree { 
66         font-weight: bold;
67 }
68
69 .summary .age { 
70         text-align: right;
71 }
72 .age .old { 
73         color: rgb(210, 0, 0);
74 }
75
76 div.host.summary {
77         float: left;
78 }
79 div.host.summary h3 { 
80         margin-bottom: 2px;
81 }
82 div.summary { 
83         margin: 4px;
84 }
85 div.build-section { 
86         clear: both;
87         width: 100%;
88 }
89