-
Notifications
You must be signed in to change notification settings - Fork 10
/
popup.html
42 lines (38 loc) · 902 Bytes
/
popup.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>Tabulator Popup</title>
<style>
body {
overflow: hidden;
margin: 0px;
padding: 0px;
background: white;
}
div:first-child {
margin-top: 0px;
}
div.button {
cursor: pointer;
text-align: center;
padding: 1px 3px;
font-family: sans-serif;
font-size: 0.8em;
width: 100px;
margin-top: 1px;
background: #cccccc;
border: 1px solid black;
}
div.button:hover {
background: #aaaaaa;
}
</style>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script src="popup.js"></script>
</head>
<body>
<div id="disable" class="button" style="display: none">Disable</div>
<div id="enable" class="button" style="display: none">Enable</div>
</body>
</body>
</html>