-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.html
56 lines (49 loc) · 1.34 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
<!DOCTYPE html>
<html>
<head>
<title>My Test Extension Options</title>
<style>
#copy-prefix {
text-align: right;
}
#options {
width: 250px;
height: 150px;
margin: 30px auto 20px auto;
}
.option-line {
margin-bottom: 20px;
}
.option-details {
margin-top: 10px;
padding-left: 20px;
}
label {
font-size: 1.2em;
font-weight: bold;
margin-bottom: 0.8em;
}
</style>
</head>
<body>
<div id="options">
<div class="option-line">
<label for="id-color">Card Id Color:</label> <input id="id-color" class="color">
</div>
<div class="option-line">
<label><input type="checkbox" id="bold" value="false"> Bold Card Numbers</label>
</div>
<div class="option-line">
<label><input type="checkbox" id="show-copy" value="false"> Show "Copy details" button:</label>
<div class="option-details">
<input id="copy-prefix" value="" size="4" class="align-right"> #000 <input id="copy-sep" value=", " size="1"> Example title <input id="copy-suffix" value="" size="1">
</div>
</div>
</div>
<div id="status"></div>
<button id="save">Save and Exit</button>
<button id="defaults">Reset Defaults</button>
<script src="jscolor/jscolor.js"></script>
<script src="options.js"></script>
</body>
</html>