source: subversion/trunk/roundcubemail/skins/larry/templates/messagepreview.html @ 5916

Last change on this file since 5916 was 5916, checked in by alec, 16 months ago
  • Improve headers toggle button
  • Property svn:eol-style set to native
  • Property svn:keywords set to Id Date Author Revision
File size: 2.5 KB
Line 
1<roundcube:object name="doctype" value="html5" />
2<html>
3<head>
4<title><roundcube:object name="pagetitle" /></title>
5<roundcube:include file="/includes/links.html" />
6</head>
7<body class="iframe fullheight">
8
9<div id="messagepreviewheader">
10<h3 class="subject"><roundcube:object name="messageHeaders" valueOf="subject" /></h3>
11
12<a href="#details" id="previewheaderstoggle" class="iconlink add"></a>
13
14<table class="headers-table" id="preview-shortheaders"><tbody><tr>
15<roundcube:if condition="env:mailbox == config:drafts_mbox || env:mailbox == config:sent_mbox">
16        <td class="header-title"><roundcube:label name="to" /></td>
17        <td class="header from"><roundcube:object name="messageHeaders" valueOf="to" addicon="/images/addcontact.png" /></td>
18<roundcube:else />
19        <td class="header-title"><roundcube:label name="from" /></td>
20        <td class="header from"><roundcube:object name="messageHeaders" valueOf="from" addicon="/images/addcontact.png" /></td>
21<roundcube:endif />
22        <td class="header-title"><roundcube:label name="date" /></td>
23        <td class="header from"><roundcube:object name="messageHeaders" valueOf="date" /></td>
24</tr></tbody></table>
25
26<roundcube:object name="messageHeaders" id="preview-allheaders" class="headers-table" addicon="/images/addcontact.png" exclude="subject,replyto" />
27
28<!-- record navigation -->
29<div id="countcontrols" class="pagenav">
30<roundcube:if condition="env:mailbox != config:drafts_mbox">
31        <roundcube:button command="reply" type="link" class="button reply" classSel="button reply pressed" innerClass="inner" title="replytomessage" content="&lt;-" />
32        <roundcube:button command="replyall" type="link" class="button replyall" classSel="button replyall pressed" innerClass="inner" title="replytoallmessage" content="&lt;&lt;-" />
33        <roundcube:button command="forward" type="link" class="button forward" classSel="button forward pressed" innerClass="inner" title="forwardmessage" content="-&gt;" />
34        &nbsp;
35<roundcube:endif />
36        <roundcube:button command="permaurl" type="link" class="button extwin" classSel="button extwin pressed" innerClass="inner" title="openinextwin" content="[]" target="_blank" />
37</div>
38
39</div>
40
41<div id="messagepreview">
42<div class="rightcol">
43<roundcube:object name="messageAttachments" id="attachment-list" class="attachmentslist" />
44</div>
45<div class="leftcol">
46<roundcube:object name="messageObjects" id="message-objects" />
47<roundcube:object name="messageBody" id="messagebody" />
48</div>
49</div>
50
51<roundcube:include file="/includes/footer.html" />
52
53</body>
54</html>
Note: See TracBrowser for help on using the repository browser.