forked from trembacz/xpath-finder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.html
36 lines (36 loc) · 1.3 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style>
label { padding: 5px; margin-left: 5px; min-width: 200px; display: inline-block; }
.submit { margin-left: 10px; padding: 5px 10px; background: #f9f9fa; border: 1px solid #ccc; }
.submit:hover { background: #ebebeb; cursor: pointer; }
.status { padding:10px; color: #008000; min-height: 40px; }
</style>
</head>
<body>
<form id="#xpath-form">
<div class="options-elem">
<label for="inspector">Highlight elements:</label>
<input checked id="inspector" type="checkbox">
</div>
<div class="options-elem">
<label for="copy">Auto copy to clipboard:</label>
<input checked id="copy" type="checkbox">
</div>
<div class="options-elem">
<label for="position">Xpath box align:</label>
<select id="position" class="icon">
<option value="tl">Top left</option>
<option value="tr">Top right</option>
<option value="br">Bottom right</option>
<option value="bl" selected>Bottom left</option>
</select>
</div>
<div class="status"></div>
<button type="submit" class="submit">Save options</button>
</form>
<script src="options.js"></script>
</body>
</html>