-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain-menu.html
110 lines (108 loc) · 2.48 KB
/
main-menu.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Collapsible Message Panels</title>
<style type="text/css">
* {
margin: 0;
padding: 0;
}
body {
margin: 10px auto;
width: 570px;
font: 75%/120% Arial, Helvetica, sans-serif;
}
p {
padding: 0 0 1em;
}
/* message display page */
.message_list {
list-style: none;
margin: 0;
padding: 0;
width: 383px;
}
.message_list li {
padding: 0;
margin: 0;
background: url(images/message-bar.gif) no-repeat;
}
.message_head {
padding: 5px 10px;
cursor: pointer;
position: relative;
}
.message_head .timestamp {
color: #666666;
font-size: 95%;
position: absolute;
right: 10px;
top: 5px;
}
.message_head cite {
font-size: 100%;
font-weight: bold;
font-style: normal;
}
.message_body {
padding: 5px 10px 15px;
}
.collapse_buttons {
text-align: right;
border-top: solid 1px #e4e4e4;
padding: 5px 0;
width: 383px;
}
.collapse_buttons a {
margin-left: 15px;
float: right;
}
.show_all_message {
background: url(images/tall-down-arrow.gif) no-repeat right center;
padding-right: 12px;
}
.show_recent_only {
display: none;
background: url(images/tall-up-arrow.gif) no-repeat right center;
padding-right: 12px;
}
.collpase_all_message {
background: url(images/collapse-all.gif) no-repeat right center;
padding-right: 12px;
color: #666666;
}
</style>
</head>
<body>
<ol class="message_list">
<li>
<p class="message_head"><cite>network:</cite> <span class="timestamp">1 minute ago</span></p>
<div class="message_body">
<p>Hello Nick,<br />
<br />
This is the latest message display. The rest are collapsed by default</p>
</div>
</li>
<li>
<p class="message_head"><cite>system</cite> <span class="timestamp">2 minutes ago</span></p>
<div class="message_body">
<p>message here</p>
</div>
</li>
<li>
<p class="message_head"><cite>logs:</cite> <span class="timestamp">1 day ago</span></p>
<div class="message_body">
<p>message here</p>
</div>
</li>
<li>
<p class="message_head"><cite>update:</cite> <span class="timestamp">2 days ago</span></p>
<div class="message_body">
<p>message here</p>
</div>
</li>
</ol>
<p class="collapse_buttons"><a href="#" class="show_all_message">Show all message (9)</a> <a href="#" class="show_recent_only">Show 5 only</a> <a href="#" class="collpase_all_message">Collapse all</a></p>
</body>
</html>