-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
38 lines (35 loc) · 833 Bytes
/
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
<!doctype html>
<html>
<head>
<title>Asana Filtering</title>
<script src="popup.js"></script>
<style>
body {width: 170px;}
div#columnFilters,div#userFilters {
border: 1px dotted red;
padding: 5px;
margin: 7px;
}
h1 {
font-size: 14px;
}
ul {
list-style: none;
padding-left: 5px;
margin: 0;
}
</style>
</head>
<body>
<div id="columnFilters">
<h1>columns</h1>
</div>
<div id="userFilters">
<h1>assignees</h1>
<ul id="assigneeList">
<li><input type="checkbox" checked="checked" id="deselectAllCheckbox"/><strong>(De)select all</strong></li>
<li><input type="checkbox" checked="checked" id="unassignedCheckbox"/>Unassigned</li>
</ul>
</div>
</body>
</html>