-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
45 lines (45 loc) · 1.15 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Bookmark Sorter</title>
<style>
body {
width: 300px;
padding: 10px;
font-family: Arial, sans-serif;
}
#saveBookmarksButton {
background-color: #4caf50;
color: white;
padding: 10px 20px;
margin: 10px 0;
border: none;
cursor: pointer;
}
#saveBookmarksButton:hover {
background-color: #45a049;
}
#waitingIndicator {
display: none;
margin: 10px 0;
text-align: center;
}
.error-container {
color: red;
display: none;
margin-top: 10px;
}
#bookmarksContainer {
margin-top: 10px;
}
</style>
</head>
<body>
<button id="saveBookmarksButton">Sort Bookmarks</button>
<div id="waitingIndicator">Processing...</div>
<div id="errorContainer" class="error-container"></div>
<div id="bookmarksContainer"></div>
<script type="module" src="eventHandlers.js"></script>
</body>
</html>