-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.html
66 lines (64 loc) · 2.01 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
<!DOCTYPE html>
<!--
* Derived from the Google Calendar Checker available at:
* http://code.google.com/chrome/extensions/samples.html
*
* Licensed under the Google 3-Clause BSD:
* http://code.google.com/google_bsd_license.html
-->
<html>
<head>
<title>Limit History Lifespan Options</title>
<style>
#content {
background-color: white;
border: 4px solid #0266C8;
border-radius: 12px;
margin: 40px auto 20px;
padding: 8px;
width: 600px;
}
.option_row {
clear: left;
padding: 2.5em 1em 0;
text-align:center
}
#logo {
font-size: 20px;
text-align: center;
}
</style>
</head>
<body>
<div id="content">
<div id = "logo">
<label>Limit History Entry Lifetime Options</label>
</div>
<div class="option_row">
<div>
<table cellpadding=1 width=100%>
<tr><td colspan="5"><hr></td></tr>
<tr>
<td width="30%">
</td>
<td width="60%" align="left">
<span id="historyLimitText" title="">Limit history lifespan to <select id="selectHistoryLimit"></select> days.</span>
</td>
<td width="10%"></td>
</tr>
<tr><td colspan="5"><hr></td></tr>
</table>
<br><span style="font-size: x-small; font-family: Verdana; color:#888" id="statusBar"> </span>
</div>
</div>
</div>
<div style="text-align: center;">
<span style="font-size: x-small; font-family: Verdana">Copyright © Nick Semenkovich 2014
<br><<a href="mailto:[email protected]">[email protected]</a>><br>
Open source at <a href="https://github.com/semenko/chrome-limit-history-lifetime">GitHub</a> (License: MIT)
</span>
</div>
<script src="options.js"></script>
</body>
</html>