-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
33 lines (27 loc) · 867 Bytes
/
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
<!doctype html>
<html>
<head>
<title>Envato Messages</title>
<script src="popup.js"></script>
<link rel='stylesheet' href='popup.css'>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
</head>
<body>
<header>
<span class="info icon">info_outline</span>
<h3 id="status"> You have unread comments</h3>
<a href="#" id="check_now" class="icon action" title="Check now for new comments">autorenew</a>
</header>
<div id="items_list" class="accordion vertical">
</div>
<div id="item_template" class="template">
<input type="radio" name="radio-accordion"/>
<label class="title action"></label>
<ul class=" content comments"></ul>
<a href="#" class="mark_all_as_read icon action" title="Mark as read">done</a>
</div>
<li id="comment_template" class="template">
<a href="#" class="comment_link"></a>
</li>
</body>
</html>