-
Notifications
You must be signed in to change notification settings - Fork 1
/
popup.html
59 lines (59 loc) · 2.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="styles/base.css" />
<link rel="stylesheet" href="styles/popup.css" />
</head>
<body>
<header>
<button class="reset-button go-back-btn">Root</button>
<div style="flex: 1"></div>
<button class="reset-button go-to-board-btn">Go to Board</button>
</header>
<main>
<section class="bookmark-container">
<div class="bookmark-tree"></div>
<div class="bookmark-items"></div>
</section>
<section class="board-container hidden">
<div class="board-container-content">
Empty board! Let's create some labels.
</div>
<div class="board-container-all-labels"></div>
</section>
<section class="label-container hidden">
<div class="label-container-header">
<span>Create a label</span>
<button class="label-container-closed-button reset-button">X</button>
</div>
<div class="create-label-form">
<input
type="text"
placeholder="New label name"
required
id="label-name-input"
maxlength="20"
autofocus
/>
<input type="color" value="#00e1ff" id="color-input" />
</div>
<button class="reset-button create-lable-submit-button">Create</button>
<div class="colors-container"></div>
</section>
<a href="http://paypal.me/DuyPhanz" target="_blank" class="donate-link">Buy me a cup of coffee!</a>
</main>
<footer>
<div class="quick-add-label hidden">
<span>+ Quick add label for </span>
<strong><span class="quick-add-label-url"></span></strong>
<div class="quick-add-labels"></div>
<button class="quick-add-label-close-button reset-button">x</button>
</div>
<button class="create-label-button reset-button">+ Create Label</button>
</footer>
<script src="scripts/utils.js"></script>
<script src="scripts/popup.js"></script>
</body>
</html>