forked from sanitz/hudson-chrome-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstatus.html
65 lines (56 loc) · 1.05 KB
/
status.html
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
<!DOCTYPE html>
<html>
<head>
<style>
body {
font-family: Helvetica, Arial;
font-size: small;
min-width: 300px;
overflow-x: hidden;
}
.heading {
font-weight: bold;
margin: 2px;
padding: 6px;
float: left;
}
.refresh_url {
float: right;
}
.build_result {
clear: left;
}
.url {
margin: 4px;
padding: 4px;
}
.error {
background-color: #ff0000;
color: #000;
margin 6px;
font-weight: bold;
padding: 9px;
border-radius: 4px;
}
td {
border-bottom: 1px solid #eee;
padding: 2px;
}
table {
border-spacing: 0px;
padding-bottom: 4px;
}
</style>
<script src="status.js"></script>
</head>
<body >
<div id="content">
<div id="heading" class="heading">Loading...</div>
<div id="refresh_url" class="refresh_url"></div>
<div id="build_result" class="build_result"></div
</div>
<div>
<span id="options"></span>
</div>
</body>
</html>