-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.html
46 lines (44 loc) · 1.37 KB
/
options.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
<title>RECAP options</title>
<style>
body { font-family: helvetica, arial; font-size: 13px; width: 21em; margin: 0; }
h1 { font-size: 13px; }
.item { width: 100%; height: 18px; padding: 4px; white-space: nowrap; }
.item:hover { background: #bcf; }
.icon { display: inline-block; width: 16px; padding-right: 4px; }
a { outline: none; text-decoration: none; color: inherit; }
input { vertical-align: middle; }
</style>
<a href="http://recapthelaw.org/" target="_blank">
<div class="item">
<span class="icon"></span>
About RECAP
</div>
</a>
<label for="status_notifications"
title="Show RECAP's status whenever you log into or out of PACER">
<div class="item">
<span class="icon">
<input id="status_notifications" type="checkbox">
</span>
Notify when RECAP becomes active
</div>
</label>
<label for="upload_notifications"
title="Show a message whenever RECAP uploads a file to the public archive">
<div class="item">
<span class="icon">
<input id="upload_notifications" type="checkbox">
</span>
Notify on file upload
</div>
</label>
<label for="recap_link_popups"
title="Pop up a dialog whenever you click a RECAP link to a free document">
<div class="item">
<span class="icon">
<input id="recap_link_popups" type="checkbox">
</span>
Confirm before opening free documents
</div>
</label>
<script src="options.js"></script>