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