forked from joshdholtz/chrome-circle-pr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
66 lines (63 loc) · 1.4 KB
/
popup.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
65
66
<!doctype html>
<html>
<head>
<title>Getting Started Extension's Popup</title>
<style>
body {
background-color: #002632;
color: #FAFAFA;
padding: 10px;
font-family: "Segoe UI", "Lucida Grande", Tahoma, sans-serif;
font-size: 16px;
text-align: center;
}
button#kickOffButton {
font-family: "Segoe UI", "Lucida Grande", Tahoma, sans-serif;
font-size: 16px;
margin: 0px;
padding: 4px 10px;
}
#builds {
width: 800px;
}
input#parameters {
margin: 10px 0 0 0;
padding: 4px;
width: 90%;
text-align: center;
font-family: monospace;
font-size: 12px;
font-style: normal;
font-variant: normal;
font-weight: 500;
line-height: 12.4px;
}
table {
border-collapse: collapse;
table-layout: fixed;
max-width: 100%;
}
td {
font-size: 13px;
}
tr td, tr th {
border-bottom: 1px solid #FAFAFA;
padding: 10px;
}
#status {
white-space: pre;
text-overflow: ellipsis;
overflow: none;
width: 800px;
}
</style>
<script src="popup.js"></script>
</head>
<body>
<div id="status"></div>
<hr/>
<div id="builds">
Loading list of recent CircleCI builds...
</div>
</body>
</html>