-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathconex-browser-action.html
39 lines (36 loc) · 1.55 KB
/
conex-browser-action.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
<html>
<head>
<link rel="stylesheet" type="text/css" href="conex.css">
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<meta content="utf-8" http-equiv="encoding">
</head>
<body id='browseraction'>
<form id='search-form'>
<input tabindex='1' id='search' type='search' autocomplete="off" placeholder="search for title or url" autofocus></input>
<a id='new-container-button' href="#" title='create new container'>+</a>
</form>
<form id='new-container-form'>
<div id='new-container'>
<input id='new-container-name' placeholder='container name' type='text'></input>
<select id='color'>
<option class='blue' val="blue">●</option>
<option class='turquoise' val='turquoise'>●</option>
<option class='green' val='green'>●</option>
<option class='yellow' val='yellow'>●</option>
<option class='orange' val='orange'>●</option>
<option class='red' val='red'>●</option>
<option class='pink' val='pink'>●</option>
<option class='purple' val='purple'>●</option>
</select>
<input type='submit' value='add'></input>
</div>
</form>
<div id='tabcontainers'></div>
<div id='bookmarks'></div>
<div id='history'></div>
<script type="text/javascript" src="conex-helper.js"></script>
<script type="text/javascript" src="conex-components.js"></script>
<script type="text/javascript" src="conex-actions-common.js"></script>
<script type="text/javascript" src="conex-browser-action.js"></script>
</body>
</html>