-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
75 lines (64 loc) · 1.6 KB
/
popup.html
File metadata and controls
75 lines (64 loc) · 1.6 KB
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>
<title>Word Bookmarks Popup</title>
<link href="css/bootstrap.css" rel="stylesheet">
<style>
body {
min-width: 240px;
padding: 10px;
overflow-x: hidden;
font-size: 10px;
}
.popup {
font-size: 12px;
line-height: 1.5em;
}
p {
margin-top: 10px;
font-size: 10px;
margin-bottom: 0px;
}
input {
width: 120px;
height: 18px;
margin-left: 5px;
font-size: 12px;
}
.btn-go {
padding: 1px;
margin-left: 5px;
font-size: 8px;
width: 30px;
height: 22px;
background-color: #46BBD1;
border-color: #439DB9;
}
.success {
display: none;
}
.flash-visible {
display: float;
background-color: #faf8f0;
border: 1px solid #faebcc;
margin-bottom: 15px;
}
</style>
<!--
- JavaScript and HTML must be in separate files: see our Content Security
- Policy documentation[1] for details and explanation.
-
- [1]: http://developer.chrome.com/extensions/contentSecurityPolicy.html
-->
</head>
<body>
<div class="success" id="flash">Saved</div>
<div class="popup">
Save as: <input class="small" id="textbox" type="text" />
<input type="button" id="button" class="btn btn-success btn-xs btn-go" value="Go"/>
<p><a href="#" id="list">list all jumps</a></p>
</div>
<script src="js/jquery.js"></script>
<script src="popup.js"></script>
</body>
</html>