-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (47 loc) · 1.39 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
<!DOCTYPE html>
<html>
<head>
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet">
<meta charset="utf-8">
<script src="//code.jquery.com/jquery-2.1.1.min.js"></script>
<script src="scripts.js"></script>
<title>Gerrit</title>
<style>
.build{font-variant:small-caps;}.fallback{display:none;}
.loading,.openrw{margin:1em 0 0.5em;display:block;font-size:1.2em;text-align:center;}
body{max-width:910px;margin:auto;}
/* so silly */
img{transition-duration:0.5s;transition-property:transform;}
img[title="Devanw"]:hover{transform:rotate(360deg)}
.approved i:hover:before{content:"+2"}
.recommended i:hover:before{content:"+1"}
.neutral i:hover:before{content:" 0"}
.disliked i:hover:before{content:"-1"}
.rejected i:hover:before{content:"-2"}
</style>
</head>
<body>
<table class="table">
<thead>
<tr>
<th></th>
<th>Project</th>
<th>Summary</th>
<th>User</th>
<th><abbr title="Code-Review">CR</abbr></th>
<th><abbr title="Verification">V</abbr></th>
<th></th>
</tr>
</thead>
<tbody class="gerrit"></tbody>
<tbody class="github"></tbody>
</table>
<div class="loading">
<i class="fa fa-circle-o-notch fa-spin"></i>
Loading
<span class="loadingdesc"></span>
</div>
<div class="openrw"></div>
</body>
</html>