-
Notifications
You must be signed in to change notification settings - Fork 10
/
popup.html
101 lines (79 loc) · 1.66 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
<style>
body {
text-align: right;
min-width: 220px;
min-height: 52px;
font-family: helvetica, arial;
font-size: 12px;
}
a {
color: #333;
}
a:hover {
color: #777;
}
.textInput {
width: 100px;
height: 20px;
border: 1px solid #DADADA;
margin-left: 6px;
font-family: helvetica, arial;
font-size: 10px;
color: #505050;
}
button {
width: 40px;
background-color: #EAEAEA;
border: 1px solid #DADADA;
}
#actions {
display: none;
margin-top: 12px;
}
#disclaimer {
display: none;
padding-top: 15px;
font-size: 10px;
}
img {
margin: 5px;
border: 2px solid black;
vertical-align: middle;
width: 75px;
height: 75px;
}
#loading {
position: absolute;
display: none;
border: 0;
top: 54px;
left: 135px;
width: 16px;
height: 16px;
}
#imgContainer {
margin-top: 10px;
display: none;
overflow-x: hidden;
width: 285px;
max-height: 440px;
}
.loadMore {
display: block;
text-align: center;
background-color: #DADADA;
padding: 10px;
text-decoration: none;
}
</style>
<script type="text/javascript" src="jquery-2.0.2.min.js"></script>
<script type="text/javascript" src="popup_script.js"></script>
Photo Id: <input id="photoId" class="textInput" /> <button id="photoOk">Load</button> <br/>
Set Id: <input id="setId" class="textInput" /> <button id="setOk">Load</button> <br/>
<div id="actions">
<a id="openAll" href="#">Download all</a> | <a id="clear" href="#">Clear</a><br/>
<!-- <input id="open" name="action" type="radio"><label for="open">Open</label> -->
<!-- <input id="download" name="action" type="radio" checked><label for="download">Download</label><br/> -->
</div>
<div id="imgContainer"></div>
<img id="loading" src="loading.gif" />