-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathoptions.html
More file actions
116 lines (111 loc) · 4.03 KB
/
options.html
File metadata and controls
116 lines (111 loc) · 4.03 KB
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<!DOCTYPE html>
<html>
<head>
<title>Options</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="lib/bootstrap/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div class="jumbotron">
<div class="container">
<h1>Style Capture Setting Page</h1>
<p></p>
<p>
<a class="btn btn-primary btn-lg" role="button"
href="https://github.com/lingjf/Style-Capture">Learn more</a>
<iframe
src="http://ghbtns.com/github-btn.html?user=lingjf&repo=Style-Capture&type=watch&count=true"
allowtransparency="true" frameborder="0" scrolling="0" width="62" height="20"></iframe>
<iframe
src="http://ghbtns.com/github-btn.html?user=lingjf&repo=Style-Capture&type=fork"
allowtransparency="true" frameborder="0" scrolling="0" width="62"
height="20"></iframe>
<iframe
src="http://ghbtns.com/github-btn.html?user=lingjf&repo=Style-Capture&type=follow"
allowtransparency="true" frameborder="0" scrolling="0" width="140"
height="20"></iframe>
</p>
</div>
</div>
<div class="container">
<div class="btn-group" data-toggle="buttons">
<label class="btn btn-default" id="ShowSelectedTagChain"> <input
type="checkbox" name="options"> Show selected tag chain
</label>
</div>
<div class="btn-group" data-toggle="buttons">
<label class="btn btn-default" id="Computed_Style"> <input
type="radio" name="options"> Computed Style
</label> <label class="btn btn-default" id="Author_Style"> <input
type="radio" name="options"> Author Style
</label>
</div>
<div class="btn-group" data-toggle="buttons">
<label class="btn btn-default" id="Simplification"> <input
type="checkbox" name="options"> Simplification
</label>
</div>
<div class="btn-group" data-toggle="buttons">
<label class="btn btn-default" id="RemoveDefault"> <input
type="checkbox" name="options"> Remove Default Style
</label>
</div>
<p />
<div class="list-group">
<div class="btn-toolbar list-group-item" role="toolbar">
<label>Capture with children recursively:</label>
<button type="button" class="btn btn-default">
⌨ <span>Enter</span>
</button>
<button type="button" class="btn btn-default">
⌨ <span>Control+C</span>
</button>
</div>
<div class="btn-toolbar list-group-item" role="toolbar">
<label>Capture without children elements:</label>
<button type="button" class="btn btn-default">
⌨ <span>Control+Enter</span>
</button>
<button type="button" class="btn btn-default">
⌨ <span>Control+X</span>
</button>
</div>
<div class="btn-toolbar list-group-item" role="toolbar">
<label>Expand selected element :</label>
<button type="button" class="btn btn-default">
⌨ <span class="glyphicon glyphicon-circle-arrow-up"></span> <span>
Up </span>
</button>
<button type="button" class="btn btn-default">
⌨ <span>␠ Space </span>
</button>
</div>
<div class="btn-toolbar list-group-item" role="toolbar">
<label>Shrink selected element :</label>
<button type="button" class="btn btn-default">
⌨ <span class="glyphicon glyphicon-circle-arrow-down"></span>
<span> Down </span>
</button>
</div>
<div class="btn-toolbar list-group-item" role="toolbar">
<label>Delete selected element :</label>
<button type="button" class="btn btn-default">
⌨ <span> ␡ Delete</span>
</button>
<button type="button" class="btn btn-default">
⌨ <span> ␈ Backspace</span>
</button>
</div>
<div class="btn-toolbar list-group-item" role="toolbar">
<label>Disable Style Capture on page :</label>
<button type="button" class="btn btn-default">
⌨ <span> ␛ Escape </span>
</button>
</div>
</div>
</div>
</body>
<script src="lib/jquery.js"></script>
<script src="lib/bootstrap/js/bootstrap.min.js"></script>
<script src="options.js"></script>
</html>