-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
121 lines (107 loc) · 2.63 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html>
<style type="text/css">
body
{
background-color:rgba(255,255,255,0.8);
margin:0px!important;
min-height:250px;
}
#bubbledictionary
{
background-color:white;
padding:18px!important;
min-width:419px;
float:left;
}
#toc
{
}
#bubbledictionarytitlecontainer *
{
margin:0px 0px 7px 0px!important;
padding:0px!important;
font-family:helvetica;
font-size:22px;
font-weight:bold;
border:none;
text-align:left!important;
}
#bubbledictionarytitle
{
cursor:pointer;
text-align:left;
}
#bubbledictionarywordinput
{
outline:0;
text-align:left;
}
.bubbledictionaryentry
{
margin:0;
text-align:left!important;
width:100%;
}
.bubbledictionaryentrylink
{
color:#336699;
text-decoration:none;
font-family:helvetica;
font-size:14px;
text-align:left!important;
}
.bubbledictionaryentryimport
{
display:none;
margin:8px;
}
.bubbledictionaryentryimportshow, .bubbledictionaryentryimporthide
{
color:#996633;
cursor:pointer;
font-family:helvetica;
font-size:14px;
text-align:left!important;
}
.bubbledictionaryhr
{
width:100%;
border:0px;
height:1px;
background-color:black;
margin:4px 0;
}
#bubbledictionaryloadanimation
{
position:absolute;
top:100px;
right:30px;
/*z-index:-100;*/
}
</style>
<script type="text/javascript" src="jquery-2.0.3.js"></script>
<title></title>
<body>
<!--div id="toc"-->
</div>
<div id="bubbledictionary">
<div id="bubbledictionarytitlecontainer">
<h2 id="bubbledictionarytitle" class="bubbledictionarytitle" title="click to change" style="display:none"></h3>
<input id="bubbledictionarywordinput"/>
</div>
<img src="load.gif" style="display:none;" id="bubbledictionaryloadanimation" />
<div class="bubbledictionaryentry template" style="display:none;">
<a class="bubbledictionaryentrylink" target="_blank"><span class="bubbledictionaryentrylink"></span> <img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAALCAYAAABLcGxfAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAFVJREFUeNpi/P//PwMMpM08geBgBwJMDCQCFnSBWekWjNgUAm3/ANZAhDNQAMhJH0Fuw2UyNg0MpNpAmacJ+YkFXwhBQ0YeKP6RYid9AJpGlAaAAAMAx2IanJ0wsjgAAAAASUVORK5CYII=" /></a>
<br />
<span class="bubbledictionaryentryimportshow"> show</span>
<span class="bubbledictionaryentryimporthide" style="display:none;"> hide</span>
<div class="bubbledictionaryentryimport"></div>
<hr class="bubbledictionaryhr" />
</div>
</div>
</body>
<script type="text/javascript" src="sites.js"></script>
<script type="text/javascript" src="options.js"></script>
<script type="text/javascript" src="popup2.js"></script>
</html>