]> git.ipfire.org Git - people/jschlag/pbs.git/blob - src/static/css/jobs-table.css
Use autotools
[people/jschlag/pbs.git] / src / static / css / jobs-table.css
1
2 /*
3 General table attributes.
4 */
5
6 table.jobs {
7 width: 95%;
8 margin: 1em;
9
10 border: 1px solid #66000f;
11 }
12
13 table.jobs th {
14 text-align: center;
15
16 background-color: #707081;
17 color: white;
18 font-weight: normal;
19
20 border-bottom: 1px solid #66000f;
21 }
22
23 table.jobs td {
24 }
25
26 table.jobs tr.job {
27
28 }
29
30 table.jobs td.aborted {
31 background-color: black;
32 color: white;
33 }
34
35 table.jobs td.failed {
36 background-color: #cc0000;
37 color: white;
38 }
39
40 table.jobs td.failed a {
41
42 }
43
44 table.jobs td.finished {
45 background-color: #66ff66;
46 color: black;
47 }
48
49 table.jobs td.pending {
50 background-color: #ffcc33;
51 color: black;
52 }
53
54 table.jobs td.supported_arches {
55 border-top: 1px solid black;
56 text-align: center;
57 }
58
59 /* Positioning of texts in the cells. */
60
61 table.jobs td.icon {
62 text-align: center;
63 }
64
65 table.jobs td.duration {
66 text-align: right;
67 }
68
69 table.jobs td.arch {
70 text-align: center;
71 }
72
73 table.jobs .state {
74 text-align: center;
75
76 border-left: 1px solid black;
77 border-right: 1px solid black;
78 }
79
80 table.jobs td.host {
81 text-align: center;
82 }