forked from graydon/bors
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bors.css
83 lines (68 loc) · 1.13 KB
/
bors.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
body {
background: white;
font-size: small;
}
.header {
text-align: center;
padding: 0.5em;
background: white;
}
#queue {
margin: 0em auto;
border: 1px black solid;
}
.PENDING {
background: lime;
}
.APPROVED {
background: palegreen;
}
.DISCUSSING {
background: lightblue;
}
.STALE {
background: orange;
}
.BAD {
background: red;
}
.TESTED, .CLOSED {
background: white;
border: dashed lime 1px;
}
.title {
text-decoration: underline;
}
.commentheader {
word-spacing: 2em;
}
.commentbody {
margin-top: 0.25em;
width: 50em;
font-style: italic;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.comment {
font-size: x-small;
margin: 1em;
spacing: 0.25em;
padding-left: 0.25em;
border-left: 2px solid gray;
}
td.details {
width: 80%;
}
td {
vertical-align: text-top;
padding-left: 0.25em;
padding-right: 0.25em;
padding-top: 0.1em;
padding-bottom: 0.1em;
}
tr {
padding: 0;
}
tr:nth-child(even) { background: #f0f0f0; }
tr:nth-child(odd) { background: white; }