]> git.ipfire.org Git - people/jschlag/pbs.git/blob - data/static/css/commits-table.css
80c1c33c975d31c941322c97c97abfaa70a9f6d4
[people/jschlag/pbs.git] / data / static / css / commits-table.css
1
2
3 table.commits {
4 width: 95%;
5 }
6
7 table.commits tr.commit {
8 background-color: #e1e1e1;
9 }
10
11 table.commits tr.commit td.revision {
12 font-family: monospace;
13
14 width: 10%;
15 }
16
17 table.commits tr.commit td.author {
18 width: 20%;
19 }
20
21 table.commits tr.commit td.subject {
22 width: 70%;
23 }
24
25 /* States */
26
27 table.commits tr.state-running {
28 background-color: yellow;
29 }
30
31 table.commits tr.state-failed {
32 background-color: red;
33 color: white;
34 }
35
36 table.commits tr.state-finished {
37 background-color: green;
38 color: white;
39 }