-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
47 lines (42 loc) · 1.73 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
46
47
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="https://unpkg.com/[email protected]/build/pure-min.css"
integrity="sha384-nn4HPE8lTHyVtfCBi5yW9d20FjT8BJwUXyWZT9InLYax14RDjBj46LmSztkmNP9w" crossorigin="anonymous">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.1/css/all.css"
integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr" crossorigin="anonymous">
<link rel="stylesheet" href="popup.css">
</head>
<body>
<div class="content">
<h2>Search Azure Devops</h2>
<div class="pure-g" style="padding-bottom: 7px;">
<div class="pure-u-4-5 muted">
<div class="">Search within:
<span class="bold" id="search-within"></span>
</div>
</div>
<div class="pure-u-1-5 muted" style="text-align: right;">
<a class="" id="settings" tooltip="Settings">
<i class="fa fa-cog"></i>
</a>
</div>
</div>
<form id="search" class="pure-form pure-g">
<div class="pure-u-4-5">
<input class="full-width" id="query" type="text" hint="search..." autofocus="">
</div>
<div class="pure-u-1-5 muted" style="text-align: center;">
New tab
<input type="checkbox" id="newTab" />
</div>
<div class="pure-u-1-1">
<button class="pure-button full-width" type="submit" tooltip="Search">
<i class="fa fa-search"></i> Search
</button>
</div>
</form>
</div>
<script src="popup.js"></script>
</body>
</html>