-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathoptions.html
97 lines (97 loc) · 5.01 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<html>
<head>
<title>Reddited Extension Options</title>
<script type="text/javascript" src="js/jquery-1.6.1.min.js"></script>
<script type="text/javascript" src="js/main.js?v=1.3.19"></script>
<script type="text/javascript" src="js/options.js?v=1.3.19"></script>
<style type="text/css">
body { cursor: default; font-size: 13px; background-color:white; color:black; margin:10px; font-family: Arial, sans-serif; }
a:link { color: rgb(63, 110, 194); }
a:active { color: rgb(37, 64, 113); }
#sidebar { -webkit-border-end: 1px solid #c6c9ce; background: -webkit-linear-gradient(rgba(234, 238, 243, 0.2), #eaeef3), -webkit-linear-gradient(left, #eaeef3, #eaeef3 97%, #d3d7db); position: fixed; bottom: 0; top: 0; left: 0; right 0; width: 216px; }
#sidebar h1 { -webkit-padding-end: 24px; -webkit-user-select: none; color: #53637d; cursor: pointer; font-size: 200%; font-weight: normal; margin: 0; padding-bottom: 14px; padding-top: 13px; text-align: end; text-shadow: white 0 1px 2px; background: url(images/icon48.png) 5 0 no-repeat; }
#main { -webkit-box-align: stretch; -webkit-padding-start: 216px; margin: 0; position: absolute; left: 0; right: 0; top: 0; bottom: 0; }
#content { box-sizing: border-box; max-width: 888px; min-width: 600px; padding: 0 24px; }
.page h1 { -webkit-padding-end: 24px; -webkit-user-select: none; border-bottom: 1px solid #eeeeee; color: #53637d; font-size: 200%; font-weight: normal; margin: 0; padding-bottom: 4px; padding-top: 13px; text-shadow: white 0 1px 2px; }
.subpage-sheet .page h1 { margin-bottom: 10px; }
.overlay .page h1 { background: -webkit-linear-gradient(white, #f8f8f8); border-bottom: 1px solid rgba(188, 193, 208, .5); font-size: 105%; font-weight: bold; padding: 10px 15px 8px 15px; }
.page list { /* Min height is a multiple of the list item height (32) */ min-height: 192px; }
section { -webkit-box-orient: horizontal; border-bottom: 1px solid #eeeeee; display: -webkit-box; margin-top: 17px; padding-bottom: 20px; }
div.page section:last-child { border-bottom: none; }
div.page > h3 { font-size: 105%; font-weight: bold; margin: 20px 0 10px 0; }
section > h3 { font-size: 105%; font-weight: bold; margin: 0; vertical-align: middle; width: 140px; }
section > div:only-of-type { -webkit-box-flex: 1; }
.option { margin-top: 0; }
div.checkbox, div.radio { margin: 5px 0; }
div.group > div { margin-left: 20px; }
div.group > div:first-child { margin-left: 0px; }
#auto_check_whitelist, #auto_check_blacklist { width: 300px; height: 150px; }
#auto_check_whitelist[readonly] { background: lightgrey; }
#customize_links { margin-top: 5px; width: 300px; height: 15px; position: relative; }
#customize_links a { position: absolute; right: 0px; }
</style>
</head>
<body>
<div id="sidebar">
<h1>Reddited</h1>
</div>
<div id="main">
<div id="content">
<div class="page">
<h1>Options</h1>
<section>
<h3>Auto-Check Pages</h3>
<div>
<div class="radio">
<label>
<input type="radio" name="auto_check" value="never" />
<span>Never</span>
</label>
</div>
<div class="group">
<div class="radio">
<label>
<input type="radio" name="auto_check" value="whitelist" />
<span>Only for the listed domains (one per line):</span>
</label>
</div>
<div class="textarea">
<textarea name="auto_check_whitelist" id="auto_check_whitelist" readonly="readonly"></textarea>
<div id="customize_links">
<input type="hidden" name="auto_check_whitelist_customized" id="auto_check_whitelist_customized" />
<a href="#"><span class="yes">Customize Domains</span><span class="no" style="display: none;">Restore Original</span></a>
</div>
</div>
</div>
<div class="group">
<div class="radio">
<label>
<input type="radio" name="auto_check" value="blacklist" />
<span>Except for the listed domains (one per line):</span>
</label>
</div>
<div class="textarea">
<textarea name="auto_check_blacklist" id="auto_check_blacklist"></textarea>
</div>
</div>
<div class="group">
<div class="radio">
<label>
<input type="radio" name="auto_check" value="always" />
<span>Always</span>
</label>
</div>
<div class="checkbox">
<label>
<input type="checkbox" name="auto_check_https" id="auto_check_https" />
<span>Even https</span>
</label>
</div>
</div>
</div>
</section>
</div>
</div>
</div>
</body>
</html>