-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.html
47 lines (46 loc) · 1.51 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
<!DOCTYPE html>
<html>
<head>
<title>Options</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="css/bootstrap.min.css" rel="stylesheet" media="screen">
</head>
<body>
<div class="container">
<style>
select {
margin-bottom: 0;
}
.option {
margin-bottom: 0;
}
</style>
<form>
<fieldset>
<legend>Options</legend>
<div class="row" style="margin-bottom: 10px;">
<div class="span12">
<select id="showHideSelect">
<option value="hide">Hide all</option>
<option value="show">Show only</option>
</select>
<span>posts that matches</span>
<select id="allAnySelect">
<option value="all">all</option>
<option value="any">any</option>
</select>
<span>of the rules listed below:</span>
</div>
</div>
<div class="row"><div class="span12"><ul id="ruleList">
</ul></div></div>
<input id="newRuleBtn" type="button" class="btn" value="New Rule"/>
<input id="saveBtn" type="button" class="btn btn-primary" value="Save"/>
</fieldset>
</form>
</div>
<script src="js/jquery-1.7.2.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/options.js"></script>
</body>
</html>