-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.html
51 lines (41 loc) · 1.51 KB
/
options.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Icon Gallery</title>
<link rel="stylesheet" href="vendor/fontawesome-free-5.5.0-web/css/solid.min.css">
<link rel="stylesheet" href="vendor/fontawesome-free-5.5.0-web/css/fontawesome.min.css">
<link rel="stylesheet" href="vendor/fontawesome-free-5.5.0-web/css/regular.min.css">
<link rel="stylesheet" type="text/css" href="options/options.css">
<script src="util.js"></script>
<script src="theme.js"></script>
<script src="CGC.js"></script>
</head>
<body>
<h1>Manage Icons & Posters for Coloful Github Contribution</h1>
<hr>
<div id="icon-gallery">
<div class="icon add-btn js-add-file-btn"></div>
<div class="icon js-recover-btn"><i class="fa fa-undo"></i></div>
</div>
<form id="icon-form" hidden>
<input type='file' accept="image/*"/>
</form>
<div id="poster-gallery">
<div class="btn-group">
<div class="icon add-btn"></div>
<div class="url-input-box underline">
<input class="invisible-input" type="text" placeholder="https://example.com/test.png" autocomplete="off">
<div class="nonedit-hide error-prompt"></div>
</div>
<div class="nonedit-hide icon fa fa-check js-ok-btn"></div>
<div class="nonedit-hide icon far fa-folder-open js-add-file-btn"></div>
<div class="icon js-recover-btn"><i class="fa fa-undo"></i></div>
</div>
</div>
<form id="poster-form" hidden>
<input type='file' accept="image/*"/>
</form>
</body>
<script src="options/options.js"></script>
</html>