forked from rmraya/TMXEditor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpreferences.html
46 lines (42 loc) · 1.61 KB
/
preferences.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
<!DOCTYPE html>
<html>
<head>
<title>Preferences</title>
<link id="theme" rel="stylesheet" type="text/css" href="../css/light.css">
<link rel="stylesheet" type="text/css" href="../css/fonts.css">
</head>
<body onload="new Preferences();">
<table class="fill_width">
<tr>
<td class="middle noWrap"><label for="themeColor">Theme</label></td>
<td class="middle fill_width">
<select id="themeColor" class="table_select">
<option value="system">System Default</option>
<option value="dark">Dark</option>
<option value="light">Light</option>
</select>
</td>
</tr>
<tr>
<td class="middle noWrap"><label for="threshold">Max File size for<br> Memory Storage</label></td>
<td class="middle fill_width noWrap">
<select id="threshold">
<option value="100">100</option>
<option value="200">200</option>
<option value="500">500</option>
<option value="1000">1000</option>
</select>
(MB)
</td>
</tr>
<tr>
<td class="middle noWrap"><label for="indentation">Indentation</label></td>
<td class="middle fill_width"><input type="number" id="indentation" min="0" max="8" value="4"> spaces</td>
</tr>
</table>
<div class="buttonArea">
<button id="savePreferences">Save Preferences</button>
</div>
<script src="../js/preferences.js"></script>
</body>
</html>