-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsettings.html
90 lines (84 loc) · 2.3 KB
/
settings.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
<!DOCTYPE html>
<html>
<head>
<title>Settings</title>
<meta charset="UTF-8">
<script src="settings.js"></script>
<link rel="stylesheet" href="font-awesome/font-awesome.min.css">
<link rel="stylesheet" href="dropdownlist/dropdownlist.css"/>
<link rel="stylesheet" type="text/css" href="switch/switch.css">
<link rel="stylesheet" type="text/css" href="settings.css">
<link rel="stylesheet" type="text/css" href="darkmode.css">
</head>
<body darkmode>
<div id="title" darkmode>Settings</div>
<fieldset darkmode>
<table>
<tr>
<td darkmode>Font size (px) :  </td>
<td><input darkmode id=input-fontsize type="text" maxlength=4></td>
</tr>
<tr>
<td darkmode>Dark mode : </td>
<td>
<label class="form-switch">
<input id=isdarkmode type="checkbox">
<i></i>
</label>
</td>
</tr>
</table>
</fieldset>
<fieldset darkmode>
<table>
<tr>
<td darkmode>Market :  </td>
<td>
<div class="dropdown dropdown-dark">
<select class="dropdown-select" id=marketselector>
<option value="US">US</option>
</select>
</div>
</td>
</tr>
</table>
</fieldset>
<fieldset>
<table>
<tr>
<td darkmode>Total Debt To Total Assets Max (%) : </td>
<td><input darkmode id=input-total-debt-to-assets-max type="text" maxlength=5></td>
</tr>
<tr>
<td darkmode>Cash and Receivables To Total Assets Max (%) :  </td>
<td><input darkmode id=input-cash-and-receivables-to-assets-max type="text" maxlength=5></td>
</tr>
</table>
</fieldset>
<fieldset>
<table>
<tr>
<td darkmode>Highlight: </td>
<td><textarea darkmode id="filters" rows="4" cols="50"></textarea></td>
</tr>
<tr>
<td darkmode title="This mode let you enter many tickets at once">Batch mode: </td>
<td>
<label class="form-switch">
<input id=isbatchmode type="checkbox">
<i></i>
</label>
</td>
</tr>
</table>
</fieldset>
<div id=foot>
<span darkmode id="savesuccess" style="width: 70%; padding-right: 10px; display:none ">
* The changes have been saved; refresh your other windows for the changes to take effect.
</span>
<a darkmode id="save-btn" class="btn"><span style="margin: 0 3px;">Save</span>
<i class="fa fa-save fa-sm dark-icon"></i>
</a>
</div>
</body>
</html>