]> git.ipfire.org Git - pbs.git/blob - src/static/css/build-table.css
Use autotools
[pbs.git] / src / static / css / build-table.css
1 /*
2
3 CSS attributes for the build table.
4
5 */
6
7 /* Scratch builds are shown in italic font. */
8 ul.builds li.build a.scratch {
9 font-style: italic;
10 }
11
12 table.builds tr.build {
13 line-height: 175%;
14 }
15
16 table.builds tr.build td.name {
17 width: 20em;
18 }
19
20 table.builds tr.build td.name a.scratch {
21 font-style: italic;
22 }
23
24 table.builds tr.build td.name a.unknown {
25 color: #515151;
26 }
27
28 table.builds tr.build td.name a.failed {
29 color: red;
30 }
31
32 table.builds tr.build td.name a.running {
33 color: yellow;
34 }
35
36 table.builds tr.build td.name a.finished {
37 color: green;
38 }
39
40 table.builds tr.build td.user {
41 width: 10em;
42 }
43
44 table.builds tr.build td.jobs a.pending {
45 color: #515151;
46 }
47
48 table.builds tr.build td.jobs a.running {
49 color: yellow;
50 }
51
52 table.builds tr.build td.jobs a.dependency_error {
53 color: blue;
54 }
55
56 table.builds tr.build td.jobs a.failed {
57 color: red;
58 }
59
60 table.builds tr.build td.jobs a.dispatching {
61 color: yellow;
62 }
63
64 table.builds tr.build td.jobs a.uploading {
65 color: yellow;
66 }
67
68 table.builds tr.build td.jobs a.finished {
69 color: green;
70 }