This repository has been archived by the owner on Apr 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
executable file
·95 lines (91 loc) · 2.58 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
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
91
92
93
94
95
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<style>
body {
cursor: default;
margin: 2px;
width: 100%;
background-color: #F5F4EA;
overflow: hidden;
}
#search {
width: 125px;
}
#popup-baloon, #popup-baloon table {
width: 150px;
font-size: 10pt;
}
.button {
color: #0A50A1;
border: #F5F4EA 1px solid;
}
.button table {
color: #0A50A1;
}
.button:hover {
background: #ece9d8;
cursor: pointer;
border:#A79F72 1px solid;
/*width: 100%;*/
}
a {
cursor: pointer;
color: #0A50A1;
text-decoration: none;
}
#search {
border: #A79F72 1px solid;
background: url(pic/search_icon.png) no-repeat 1px 1px;
padding-left: 20px;
height: 19px;
width: 150px;
}
span {
padding-left:5px;
}
span#inboxC, span#new_torrC, span#watcherC {
padding-left:0px;
}
#searchPlus {
display: none;
margin: 0 0 0 0;
text-align:right;
padding-left: 140px;
padding-top:7px;
position: absolute;
}
#searchPlus img {
cursor: pointer;
}
#searchPlus img:hover {
background: #ece9d8;
}
</style>
<script type="text/javascript" src="lib/jquery.js"></script>
<script type="text/javascript" src="lib/popup.js"></script>
</head>
<body class="tmdFont">
<div id="reloading" style="position:fixed;top:8px;right:10px;"><img src="pic/loading.gif"></div>
<table width="150" border="0" cellpadding="3" cellspacing="0" id="popup-baloon">
<tr>
<td>
<div id="showSearch">
<input id="search" style="color:#A79F72" type="text" value="">
<table id="searchPlus" align="right" border="0" cellpadding="0" cellspacing="0">
<tr>
<td><img id="searchIMDB" src="pic/imdb_16.jpg" width="16" height="16"></td>
<td><img id="searchGo" src="pic/search_icon.png" width="16" height="16"></td>
</tr>
</table>
</div>
</td>
</tr>
<tr id="menuHere" style="height:0px;"><td></td></tr>
<tr id="popup-options"><td class="button"><table width="100%" border="0" cellpadding="0" cellspacing="0"><tbody><tr><td width="16"><img src="pic/options.png" width="16" height="16"></td> <td><span id="optionsPage">optionTitle</span></td></tr></tbody></table></td></tr>
<tr id="popup-empty"><td class="button"><table width="100%" border="0" cellpadding="0" cellspacing="0"><tbody><tr><td width="16"><img src="pic/options.png" width="16" height="16"></td> <td><span id="optionsEmpty">popup is empty</span></td></tr></tbody></table></td></tr>
</table>
<!--<audio id="notify_sound" src="sound/notify.mp3"></audio>-->
</body>
</html>