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