-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpopup.html
26 lines (23 loc) · 1.01 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
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Later tabs</title>
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/flat-ui.css" />
</head>
<body class="dark-body">
<div id="main" class="todo mrm">
<div class="todo-button-area">
<div id="save_tab_button" class="divisor item1"><span class="settings_btn_16 pull-left fui-checkmark-16"></span>Save tab</div>
<div id="save_all_button" class="divisor item2"><span class="settings_btn_16 pull-left fui-checkround-24"></span>Save all tabs</div>
<div id="settings_button" class="divisor item3"><span class="settings_btn_16a pull-right fui-settings-24"></span>Settings</div>
</div>
<div class="todo-search">
<input id="search_field" class="todo-search-field" type="search" value="" placeholder="Search">
</div>
<ul id="tab_list"></ul>
</div>
<script type="text/javascript" src="/js/latertabs.js"></script>
</body>
</html>