-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
111 lines (90 loc) · 2.75 KB
/
index.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
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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Deployment status</title>
<script src="bower_components/vss-web-extension-sdk/lib/VSS.SDK.js"></script>
<script type="text/javascript">VSS.init({ usePlatformScripts: true });</script>
<script src="scripts/main.js"></script>
<script type="text/javascript">VSS.notifyLoadSucceeded();</script>
<script src="scripts/jsPlumb/jquery.min.js"></script>
<script src="scripts/jsPlumb/jquery-ui.min.js"></script>
<script src="scripts/jsPlumb/jquery.jsPlumb-1.4.1-all-min.js"></script>
<script src="scripts/ContextMenu/jquery-1.11.2.min.js"></script>
<script src="scripts/ContextMenu/jquery.contextmenu.js"></script>
<link rel="stylesheet" href="scripts/ContextMenu/jquery.contextmenu.css">
<style>
#environments {
overflow: visible;
margin-top: 30px;
}
#start {
background-color: yellow;
height: 15px;
width: 15px;
border-radius: 15px;
}
#details {
display: inline-block;
overflow: visible;
position: relative;
background-color: white;
box-shadow: 1px 1px;
margin-bottom: 5px;
}
.environment {
width: 30px;
height: 5px;
float: left;
padding-left: 10px;
padding-top: 10px;
color: blue;
border: 2px solid black;
background-color: #008B8B;
margin-right: 2px;
}
.container {
margin-bottom: 20px;
display: inline-block;
}
.preApproval {
width: 15px;
height: 15px;
float: left;
border-top-left-radius: 5px 5px;
border-bottom-left-radius: 5px 5px;
margin-right: 2px;
}
.postApproval {
width: 15px;
height: 15px;
float: left;
-webkit-border-top-right-radius: 5px 5px;
-webkit-border-bottom-right-radius: 5px 5px;
margin-right: 0px;
}
.succeeded {
background-color: green;
}
.failed {
background-color: red;
}
.pending {
background-color: darkblue;
}
.running {
background-color: #ADD8E6;
}
.scheduled {
background-color: black;
}
.notStarted {
background-color: grey;
}
</style>
</head>
<body>
<div id="environments">
</div>
<div id="details"></div>
</body>
</html>