-
Notifications
You must be signed in to change notification settings - Fork 4
/
popup.html
56 lines (51 loc) · 1.12 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
<html>
<head>
<style>
* {
margin: 0;
padding: 0;
}
#message_tb{
margin: 2px;
width: 100%;
border-collapse: collapse;
}
#message_tb td, #message_tb th {
padding: 3px;
font-size: 12px;
border: 1px solid #ccc;
}
#message_tb td, #message_tb td a{
color: #333;
text-decoration: none;
}
#message_tb tr.unread td, #message_tb tr.unread a{
color: red;
}
body {
margin: 0px;
padding: 0px;
width: 400px;
border: 1px solid #ccc;
}
.left_title{
padding-right: 10px;;
font-weight: bold;
}
input[type=text] {
padding: 2px 2px;
}
input[type=button] {
padding: 5px 10px;
}
</style>
</head>
<body>
<div id="message_div">
Loading...
</div>
<script src="js/jquery-3.1.1.min.js"></script>
<script src="js/base.js"></script>
<script src="js/popup.js"></script>
</body>
</html>