-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathoptions.html
97 lines (97 loc) · 3.75 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>BigConsole Options</title>
<style>
html {
background-color: #FAFAFA;
}
body {
background-color: #EEEEEE;
border: 1px solid #CCCCCC;
margin: 40px auto;
padding: 40px;
width: 680px;
}
h1 {
text-align: center;
}
ul {
padding: 0;
margin: 0 auto;
list-style: none;
display: table;
}
li {
margin: 20px 0;
}
</style>
</head>
<body>
<h1><img src="./icon16.png" alt="" /> BigConsole options</h1>
<ul>
<li>
<label for="layout">Editor on</label>
<select id="layout">
<option value="right">Right</option>
<option value="left">Left</option>
<option value="top">Top</option>
<option value="bottom">Bottom</option>
</select>
</li>
<li>
<label for="theme">Theme</label>
<select id="theme">
<optgroup label="Bright">
<option value="ace/theme/chrome">Chrome</option>
<option value="ace/theme/clouds">Clouds</option>
<option value="ace/theme/crimson_editor">Crimson Editor</option>
<option value="ace/theme/dawn">Dawn</option>
<option value="ace/theme/dreamweaver">Dreamweaver</option>
<option value="ace/theme/eclipse">Eclipse</option>
<option value="ace/theme/github">GitHub</option>
<option value="ace/theme/iplastic">IPlastic</option>
<option value="ace/theme/katzenmilch">KatzenMilch</option>
<option value="ace/theme/kuroir">Kuroir</option>
<option value="ace/theme/solarized_light">Solarized Light</option>
<option value="ace/theme/sqlserver">SQL Server</option>
<option value="ace/theme/textmate">TextMate</option>
<option value="ace/theme/tomorrow">Tomorrow</option>
<option value="ace/theme/xcode">XCode</option>
</optgroup>
<optgroup label="Dark">
<option value="ace/theme/ambiance">Ambiance</option>
<option value="ace/theme/chaos">Chaos</option>
<option value="ace/theme/clouds_midnight">Clouds Midnight</option>
<option value="ace/theme/cobalt">Cobalt</option>
<option value="ace/theme/idle_fingers">Idle Fingers</option>
<option value="ace/theme/kr_theme">krTheme</option>
<option value="ace/theme/merbivore">Merbivore</option>
<option value="ace/theme/merbivore_soft">Merbivore Soft</option>
<option value="ace/theme/mono_industrial">Mono Industrial</option>
<option value="ace/theme/monokai" selected>Monokai</option>
<option value="ace/theme/pastel_on_dark">Pastel on dark</option>
<option value="ace/theme/solarized_dark">Solarized Dark</option>
<option value="ace/theme/terminal">Terminal</option>
<option value="ace/theme/tomorrow_night">Tomorrow Night</option>
<option value="ace/theme/tomorrow_night_blue">Tomorrow Night Blue</option>
<option value="ace/theme/tomorrow_night_bright">Tomorrow Night Bright</option>
<option value="ace/theme/tomorrow_night_eighties">Tomorrow Night 80s</option>
<option value="ace/theme/twilight">Twilight</option>
<option value="ace/theme/vibrant_ink">Vibrant Ink</option>
</optgroup>
</select>
</li>
<li>
<label for="snippets">Enable Snippets</label>
<input type="checkbox" id="snippets" />
</li>
<li>
<label for="autocomplete">Enable Live Autocomplete</label>
<input type="checkbox" id="autocomplete" />
</li>
</ul>
<script src="./options.js"></script>
</body>
</html>