-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.html
42 lines (38 loc) · 1.21 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
<!DOCTYPE html>
<html>
<head>
<title>Options</title>
<link rel="stylesheet" type="text/css" href="options.css" />
<script src="options.js"></script>
</head>
<body>
<div id="vertical-center"></div>
<div id="content">
<h1 id="title">Settings</h1>
<div id="settings">
<div class="item">
<input type="checkbox" class="float-left" id="link-popup-checkbox" />
<div class="float-left">
<span class="desc">Show dictionary links popup</span>
<div class="dict-area" id="link-dict-area">
<div class="hint" id="link-dict-hint">Select dictionaries to show in the popup or drag to change their sequence.</div>
<ul class="dict-list float-left" id="link-dict-list">
</ul>
</div>
</div>
</div>
<div class="item">
<input type="checkbox" class="float-left" id="definition-popup-checkbox" />
<div class="float-left">
<span class="desc">Show definition popup</span>
<div class="dict-area" id="definition-dict-area">
<div class="hint" id="definition-dict-hint">Check dictionaries whose definition you want to show.</div>
<ul class="dict-list float-left" id="definition-dict-list">
</ul>
</div>
</div>
</div>
</div>
</div>
</body>
</html>