-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathissues.html
61 lines (59 loc) · 1.65 KB
/
issues.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
<!doctype html>
<!--
This page is shown when the extension button is clicked, because the
"browser_action" field in manifest.json contains the "default_popup" key with
value "popup.html".
-->
<html>
<head>
<title>Getting Started Extension's Popup</title>
<link rel="stylesheet" href="css/bootstrap.min.css" >
<style>
body {
font-family: "Segoe UI", "Lucida Grande", Tahoma, sans-serif;
font-size: 140%;
min-width:450px;
color:#777;
}
#status {
/* avoid an excessively wide status text */
white-space: pre;
text-overflow: ellipsis;
overflow: hidden;
max-width: 450px;
}
.issue {
margin-top:4px;
margin-bottom:4px;
border-radius:2px;
border-left: 4px solid #2196F3;
-webkit-box-shadow: 0px 0px 1px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 0px 1px 0px rgba(0,0,0,0.75);
box-shadow: 0px 0px 1px 0px rgba(0,0,0,0.75);
background-color:white;
padding:5px;
}
div#issues-wrapper{
padding-left:10px;
padding-right:10px;
}
.header {
}
</style>
<!--
- JavaScript and HTML must be in separate files: see our Content Security
- Policy documentation[1] for details and explanation.
-
- [1]: https://developer.chrome.com/extensions/contentSecurityPolicy
-->
</head>
<body>
<h2 class="header text-center">Open Issues</h2>
<div class="container" >
<div id="issues-wrapper">
</div>
</div>
</body>
<script src="js/qwest.min.js"></script>
<script src="js/issues.js"></script>
</html>