-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpopup.html
62 lines (60 loc) · 1.62 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
<!DOCTYPE html>
<html>
<head>
<style>
body {
width: 400px;
}
.truncate-text > p{
width: 250px;
}
p {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.left-block {
height: 53px;
}
.switch-container {
display: flex;
flex-direction: column;
align-items: center;
}
.reload-text {
margin-top: 5px;
}
</style>
<!--Import Google Icon Font-->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!--Import materialize.css-->
<link type="text/css" rel="stylesheet" href="css/materialize.min.css" media="screen,projection"/>
<!--Let browser know website is optimized for mobile-->
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
</head>
<body>
<div class="container">
<div class="row">
<div>
<div class="col offset-s2 s5"><h5>Trace Links</h5></div>
<div class="col s2 valign-wrapper left-block">
<div class="switch switch-container">
<label>
<input type="checkbox">
<span class="lever"></span>
</label>
<span class="reload-text">Reload</span>
</div>
</div>
</div>
<ul class="col s12 collection">
<table>
<tbody id="links"></tbody>
</table>
</ul>
</div>
</div>
<script src="popup.js"></script>
<script type="text/javascript" src="js/materialize.min.js"></script>
</body>
</html>