forked from freaktechnik/advanced-github-notifier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
38 lines (37 loc) · 1.67 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<script src="scripts/l10n.js"></script>
<script src="scripts/storage.js"></script>
<script src="scripts/storage-manager.js"></script>
<script src="scripts/menu-spec.js"></script>
<script src="scripts/popup.js"></script>
<link rel="stylesheet" href="styles/popup.css">
</head>
<body>
<main class="panel">
<select id="accounts" class="browser-style">
<option value="all" data-l10n-id="allAccounts" selected>All accounts</option>
</select>
<div class="panel-section panel-section-list">
<div id="empty">
<div class="panel-list-item disabled">
<div class="icon"></div>
<span class="text" id="empty-text" data-l10n-id="noNotifications">No notifications</span>
</div>
<div class="panel-section-separator"></div>
</div>
<ul id="notifications" hidden contextmenu="maincontext"></ul>
<div class="panel-list-item disabled" id="mark-read">
<div class="icon"></div>
<span class="text" id="mark-read-text" data-l10n-id="markAllRead">Mark all as read</span>
</div>
</div>
</main>
<footer class="panel-section panel-section-footer">
<!-- The placeholder is so the popup correctly resizes when replacing the label -->
<button class="panel-section-footer-button" id="open">PLACEHOLDERPLACEHOLDERPLACEHOLDER</button>
</footer>
</body>
</html>