source: subversion/trunk/roundcubemail/skins/default/templates/mail.html @ 62

Last change on this file since 62 was 62, checked in by roundcube, 8 years ago

Finished message sorting and fixed some skin issues

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.6 KB
Line 
1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2<html xmlns="http://www.w3.org/1999/xhtml">
3<head>
4<title><roundcube:object name="pagetitle" /></title>
5<link rel="stylesheet" type="text/css" href="/common.css" />
6<link rel="stylesheet" type="text/css" href="/mail.css" />
7</head>
8<body>
9
10<roundcube:include file="/includes/taskbar.html" />
11<roundcube:include file="/includes/header.html" />
12
13<div id="messagetoolbar">
14<roundcube:button command="compose" imageAct="/images/buttons/compose_act.png" imagePas="/images/buttons/compose_pas.png" width="32" height="32" title="writenewmessage" />
15<roundcube:button command="reply" imageAct="/images/buttons/reply_act.png" imagePas="/images/buttons/reply_pas.png" width="32" height="32" title="replytomessage" />
16<roundcube:button command="forward" imageAct="/images/buttons/forward_act.png" imagePas="/images/buttons/forward_pas.png" width="32" height="32" title="forwardmessage" />
17<roundcube:button command="delete" imageAct="/images/buttons/delete_act.png" imagePas="/images/buttons/delete_pas.png" width="32" height="32" title="deletemessage" />
18<roundcube:button command="print" imageAct="/images/buttons/print_act.png" imagePas="/images/buttons/print_pas.png" width="32" height="32" title="printmessage" />
19</div>
20
21<div id="messagecountbar">
22<roundcube:button command="previouspage" imageAct="/images/buttons/previous_act.png" imagePas="/images/buttons/previous_pas.png" width="11" height="11" title="previousmessages" />
23&nbsp;<roundcube:object name="messageCountDisplay" />&nbsp;
24<roundcube:button command="nextpage" imageAct="/images/buttons/next_act.png" imagePas="/images/buttons/next_pas.png" width="11" height="11" title="nextmessages" />
25</div>
26
27<div id="mailboxlist-header"><roundcube:label name="mailboxlist" /></div>
28<div id="mailboxlist-container"><roundcube:object name="mailboxlist" id="mailboxlist" maxlength="16" /></div>
29
30
31<div id="mailcontframe">
32<roundcube:object name="messages"
33  id="messagelist"
34  cellspacing="0"
35  summary="Message list"
36  messageIcon="/images/icons/dot.png"
37  unreadIcon="/images/icons/unread.png"
38  repliedIcon="/images/icons/replied.png"
39  attachmentIcon="/images/icons/attachment.png"
40  sortDescButton="/images/buttons/up_arrow.png"
41  sortAscButton="/images/buttons/down_arrow.png" />
42</div>
43
44<div id="listcontrols">
45<roundcube:label name="select" />:&nbsp;
46<roundcube:button command="select-all" label="all" classAct="active" />&nbsp;
47<roundcube:button command="select-all" prop="unread" label="unread" classAct="active" />&nbsp;
48<roundcube:button command="select-none" label="none" classAct="active" />
49</div>
50
51</body>
52</html>
Note: See TracBrowser for help on using the repository browser.