-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpopup.html
45 lines (40 loc) · 2.13 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
<!--edtsoi-->
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Bootstrap Core CSS ––––––––––––––––––––––––––– -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css" integrity="sha384-GJzZqFGwb1QTTN6wy59ffF1BuGJpLSa9DkKMp0DgiMDm4iYMj70gZWKYbI706tWS" crossorigin="anonymous">
<!-- Font Awesome-->
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<!-- Imported google font-->
<link href="https://fonts.googleapis.com/css?family=Raleway&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Kreon&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Assistant&display=swap" rel="stylesheet">
<link href="popup.css" rel="stylesheet">
<script type="text/javascript" src="javascript/jquery-3.2.1.min.js"></script>
<script type="text/javascript" src="javascript/jquery.hotkeys-0.8.js"></script>
</head>
<body>
<div id="popup">
<form class="search">
<div>
<div class="input-group" style="position: fixed">
<span class="input-group-prepend">
<div class="input-group-text bg-transparent"><i class="nav-icon"></i></div>
</span>
<input class="form-control py-2 border-left-0 border" type="text" id="input-search" placeholder="Search your tabs..." autofocus autocomplete="off"/>
</div>
</div>
</form>
<ul class="list-group" id="tabs_results">
<!-- dynamic unordered_list (see popup.js) -->
</ul>
<div id="button-container">
<button class="btn btn-primary" id="mergeAll">Merge All</button>
<button class="btn btn-primary" id="merge-selected">Merge selected (0)</button>
</div>
</div>
<script src="popup.js"></script>
<script src="merge.js"></script>
</body>
</html>