-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpopup.html
39 lines (39 loc) · 1.49 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
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="./font-awesome.min.css">
<title>AddBookmark</title>
<style>
body {
min-width:357px;
overflow-x:hidden;
font-family: sans-serif;
font-size: 14px;
}
label {
font-size: 12px;
padding-left: 3px;
}
#title {
padding-bottom: 2px;
margin-bottom: 0px;
}
</style>
</head>
<body>
<p id="title">Bettermark</p>
<label for="bookmark_name">Name:</label> <input id="bookmark_title" type="text" name="bookmark_name" size="56"/><br>
<div style="padding-top:3px;clear:both;"></div>
<label for="bookmark_folders">Folder:</label> <select style="width:28em;" id="bookmark_folders" type="select" name="bookmark_folder"></select>
<div style="padding-top:3px;clear:both;"></div>
<input type="button" id ="remove" value="Remove"/>
<input type="button" id ="done" style="float:right;" value="Done"/>
<input type="button" id="last_folder" style="float:right" value="Last used folder"/>
<div style="padding-top:5px;clear:both;"></div>
<label>Advanced.. <i style="cursor:pointer;" id=expand class="icon-chevron-right"></i></label><br>
<div style="padding-top:3px;"></div>
<input type=text id=folder_name value="" style="display:none" size=50 placeholder="New folder for bookmark">
<input type=button id=create_folder style="display:none;float:right;" value="Create">
<script src="popup.js"></script>
</body>
</html>