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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
|
html, body {
background: #f8f8f8;
margin: 0;
padding: 0;
}
html, body, table {
font-family: Verdana, "Trebuchet MS", "Lucida Grande", "Lucida Sans", Tahoma, Arial, sans-serif;
color: #101010;
}
body { font-size: 80%; }
hr { display: none; }
article {
position: absolute;
top: 128px;
}
footer { margin: 0; padding: 0.4em 1em; background: #e0e0e0; color: #888; font-size: 80%; }
footer a { color: #555; text-decoration: none; }
.clear { clear: both; }
table {
border-spacing: 0;
}
tr { padding: 0; margin: 0; }
th { padding: 0.2em 0.5em; margin: 0; border-bottom: 1px solid #ccc; border-right: 1px solid #ccc; text-align: left; font-size: 85%; color: #999; }
th:last-child { border-right: 0; }
td { padding: 0; margin: 0; padding: 0.2em 0.5em; border-bottom: 1px solid #ccc; }
th, td { vertical-align: top; }
tr { background: transparent; }
tr.uploaded { background: #ddffdd; background: #bbffbb; }
tr.failure { background: #ffdddd; }
tr.rejected { background: #FFFFE0; }
tr.todo { background: white; }
tr.building { background: #ffff99; }
tr.partial { background: #bbbbff; }
.status-box { display: inline-block; width: 12px; height: 12px; }
tr.uploaded .status-box { background: green; }
tr.failure .status-box { background: red; }
tr.rejected .status-box { background: orange; }
tr.todo .status-box { background: white; }
tr.building .status-box { background: yellow; }
tr.partial .status-box { background: blue; }
span.failure > .status-box { background: red; }
.status-link { text-decoration: none; display: block; margin: 0; padding: 0; }
td.user,
td.status { white-space: nowrap; }
tr span.failure,
tr .media,
tr .timeinfo,
tr .revision { display: block; font-size: 85%; text-align: left; }
td .media,
td .timeinfo,
td .revision a { color: #606060; text-decoration: none; }
.number, .percent { text-align: right; }
#score { margin-bottom: 2em; font-family: Helvetica, Verdana, Arial, sans-serif; }
#score-box { width: 100px; height: 100px; background: #faa; }
#score-meter { width: 100px; background: #afa; }
.figure { font-size: 160%; font-weight: bold; }
.action-btn {
text-decoration: none;
background: #40a040;
color: #ffffff;
padding: 0.5em;
font-weight: bold;
border-radius: 5px;
font-size: 80%;
}
#stats, .figures, .builds { list-style: none; padding: 0; margin: 0 0 2em 2em; float: left; text-align: left; }
.builds table { width: 720px; }
#submitted-packages { width: 720px; }
tr.build-files-list td { font-size: 85%; padding: 1em 0 2em 0.5em; color: #222; }
tr.build-files-list td ul { padding: 0 0 0 2em; }
tr.build-files-list td a { text-decoration: none; }
tr.build-files-list td h4 { margin: 0 0 0.6em 0; }
span.dir { font-weight: bold; }
.file-view {
white-space: pre;
resize: both;
display: block;
overflow: auto;
word-wrap: break-word;
box-shadow: 0 0 10px #303030;
margin: 0.5em 0 0.5em 0;
padding: 0.5em 0 1em 0.7em;
width: 680px;
height: 13em;
background: #202020;
color: #f0f0fa;
font-family: "Andale Mono", "Courier New", fixed;
position: relative;
left: -22px;
}
ul > li .file-view { left: -22px; }
ul > li > ul > li .file-view { left: -44px; }
ul > li > ul > li > ul > li .file-view { left: -66px; }
.short .file-view {
height: 1.5em;
width: 500px;
}
.controls {
float: left;
text-align: right;
}
.short .controls { display: none; }
.gotobo, .gototop, .close {
margin: 0.6em 1em 0.6em 0;
font-size: 90%;
}
.controls p.stats { display: inline; }
.hl-none { font-weight: bold; }
.hl { font-weight: bold; }
.hl-ok { color: #33ff33; }
.hl-info { color: #3e3eff; }
.hl-warn { color: orange; }
.hl-error { color: red; }
|