forked from ixs/weaveclient-chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
64 lines (55 loc) · 1.27 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="popup.js"></script>
<style>
body {
margin: 0;
padding: 0;
width: 250px;
}
#menu {
margin: 0;
padding: 0;
list-style: none outside none;
}
li[role=menuitem] {
display: block;
height: 18px;
font-family: "Lucida Grande", sans-serif;
font-size: 13px;
margin: 0;
padding: 0 0 0 20px;
cursor: default;
}
li[role=menuitem]:hover {
background-image: -webkit-gradient(linear, left top, left bottom, from(#6488f4), to(#0e53ec));
color: white;
}
li[role=menuitem][disabled] {
color: #999999;
}
li[role=menuitem][disabled]:hover {
background-image: none;
color: #999999;
font-weight: normal;
}
li[role=separator] {
height: 0;
margin: 6px 0 6px 0;
border-top: 1px solid #e4e4e4;
}
</style>
</head>
<body>
<ul id="menu" role="menu">
<li role="menuitem" id="connect-button">Connect</li>
<li role="menuitem" id="sync-button">Sync now</li>
<li role="menuitem" disabled="disabled">Last update <time>when</time></li>
<li role="separator"></li>
<li role="menuitem" id="options">Options</li>
<li role="menuitem" id="tabs">Tabs from Other Computers</li>
</ul>
</body>
</html>