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

Last change on this file since 5798 was 5798, checked in by thomasb, 16 months ago

Move attachments list styles to common css file (to be used by other tasks and plugins, too)

  • 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<table class="headers-table" id="preview-shortheaders"><tbody><tr>
13<roundcube:if condition="env:mailbox == config:drafts_mbox || env:mailbox == config:sent_mbox">
14        <td class="header-title"><roundcube:label name="to" /></td>
15        <td class="header from"><roundcube:object name="messageHeaders" valueOf="to" addicon="/images/addcontact.png" /></td>
16<roundcube:else />
17        <td class="header-title"><roundcube:label name="from" /></td>
18        <td class="header from"><roundcube:object name="messageHeaders" valueOf="from" addicon="/images/addcontact.png" /></td>
19<roundcube:endif />
20        <td class="header-title"><roundcube:label name="date" /></td>
21        <td class="header from"><roundcube:object name="messageHeaders" valueOf="date" /></td>
22        <td class="header"><a href="#details" id="previewheaderstoggle" class="iconlink add">Details</a>
23</tr></tbody></table>
24
25<roundcube:object name="messageHeaders" id="preview-allheaders" class="headers-table" addicon="/images/addcontact.png" exclude="subject,replyto" />
26
27<!-- record navigation -->
28<div id="countcontrols" class="pagenav">
29<roundcube:if condition="env:mailbox != config:drafts_mbox">
30        <roundcube:button command="reply" type="link" class="button reply" classSel="button reply pressed" innerClass="inner" title="replytomessage" content="&lt;-" />
31        <roundcube:button command="replyall" type="link" class="button replyall" classSel="button replyall pressed" innerClass="inner" title="replytoallmessage" content="&lt;&lt;-" />
32        <roundcube:button command="forward" type="link" class="button forward" classSel="button forward pressed" innerClass="inner" title="forwardmessage" content="-&gt;" />
33        &nbsp;
34<roundcube:endif />
35        <roundcube:button command="permaurl" type="link" class="button extwin" classSel="button extwin pressed" innerClass="inner" title="openinextwin" content="[]" target="_blank" />
36</div>
37
38</div>
39
40<div id="messagepreview">
41<div class="rightcol">
42<roundcube:object name="messageAttachments" id="attachment-list" class="attachmentslist" />
43</div>
44<div class="leftcol">
45<roundcube:object name="messageObjects" id="message-objects" />
46<roundcube:object name="messageBody" id="messagebody" />
47</div>
48</div>
49
50<roundcube:include file="/includes/footer.html" />
51
52</body>
53</html>
Note: See TracBrowser for help on using the repository browser.