-
Notifications
You must be signed in to change notification settings - Fork 1
/
popup.html
92 lines (77 loc) · 1.8 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
<head>
<title>xav.cc URL Shortener</title>
<style>
* {
font-family: 'Gill Sans', 'Trebuchet MS', Verdana, Helvetica;
font-weight: normal;
font-size: 16px;
margin: 0;
padding: 0;
}
a {
color: #000;
text-decoration: none;
}
body {
min-height: 200px;
min-width: 250px;
padding: 20px 0 0 0;
}
ul {
list-style-type:none;
margin: 0;
padding: 0;
}
ul li {
min-height: 30px;
}
ul li a {
display: block;
min-height: 30px;
padding-left: 40px;
padding-top: 8px;
}
ul li:hover {
background-color: #eef;
}
.error {
color: red;
font-weight: bold;
}
#shorturl {
font-size: 20px;
margin: 0 10px;
}
#manual-copy {
display: none;
}
#view-details {
background: transparent url(./images/stats.png) 10px 8px no-repeat;
}
#twitter {
background: transparent url(./images/twitter.png) 10px 8px no-repeat;
}
#delicious {
background: transparent url(./images/delicious.png) 10px 8px no-repeat;
}
#blogmarks {
background: transparent url(./images/blogmarks.png) 10px 8px no-repeat;
}
</style>
<script src="./js/jquery-1.5.min.js" type="text/javascript"></script>
<script src="./js/localstorage.js" type="text/javascript"></script>
<script src="./js/popup.js" type="text/javascript"></script>
</head>
<body>
<div class="success"><a id="shorturl" href="#"> </a><span id="manual-copy">(<a id="copy" href="#">Copy</a>)</span></div>
<div class="error"> </div>
<div class="success">
<ul>
<li><a id="view-details" href="#">View details</a></li>
<li><a id="twitter" href="#">Twitter</a></li>
<li><a id="delicious" href="#">Delicious</a></li>
<li><a id="blogmarks" href="#">Blogmarks</a></li>
</ul>
</div>
<p id='debug'></p>
</body>