forked from Cimbali/CleanLinks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
75 lines (68 loc) · 1.22 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
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style>
html {
background: white;
}
select {
display: block;
width: 100%;
padding: 0;
}
select option[value="-1"] {
font-weight: bold;
color: white;
}
select option[value="-1"] span {
border: white thin solid;
padding: 2px 5px;
margin: 0;
}
option span {
display: inline-block;
width: 50%;
margin: 2px 5px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
background-right: white thin solid;
}
#icon {
float: left;
margin: 15px;
}
#desc {
clear: both;
}
#toggle {
float: right;
}
#title, #homepage, #copyright {
margin: 0;
}
#whitelist {
display: block;
margin: 5px 0;
float: right;
}
</style>
</head>
<body>
<div id="icon">
<img src="icon.png" />
</div>
<div>
<button id="toggle"></button>
<h3 id="title"> — <span id="status"></span></h3>
<p id="copyright"></p>
<p id="homepage"></p>
</div>
<p id="desc" i18n_text="bootstrap_whitelist_description"></p>
<select size="11"></select>
<button id="whitelist" i18n_text="bootstrap_whitelist_button" />
<script src="cleanlink.js"></script>
<script src="popup.js"></script>
</body>
</html>