Mercurial > hg > rc2
comparison skins/classic/templates/messagepart.html @ 0:4681f974d28b
vanilla 1.3.3 distro, I hope
author | Charlie Root |
---|---|
date | Thu, 04 Jan 2018 15:52:31 -0500 |
parents | |
children | bf99236cc5cd |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:4681f974d28b |
---|---|
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 <roundcube:include file="/includes/links.html" /> | |
6 <script type="text/javascript" src="/splitter.js"></script> | |
7 <script type="text/javascript" src="/functions.js"></script> | |
8 <style type="text/css"> | |
9 #messagepartheader { width: <roundcube:exp expression="!empty(cookie:mailpartsplitter) ? cookie:mailpartsplitter-5 : 170" />px; } | |
10 #messagepartcontainer { left: <roundcube:exp expression="!empty(cookie:mailpartsplitter) ? cookie:mailpartsplitter+5 : 180" />px; } | |
11 </style> | |
12 </head> | |
13 <body class="extwin"> | |
14 <roundcube:object name="message" id="message" /> | |
15 | |
16 <div id="messagetoolbar"> | |
17 <roundcube:button command="download" type="link" class="button download" classAct="button download" classSel="button downloadSel" title="download" content=" " /> | |
18 <roundcube:button command="print" type="link" class="button print" classAct="button print" classSel="button printSel" title="print" content=" " /> | |
19 <roundcube:container name="toolbar" id="messagetoolbar" /> | |
20 </div> | |
21 | |
22 <div id="mainscreen"> | |
23 <div id="messagepartheader"> | |
24 <div class="boxtitle" /><roundcube:label name="properties" /></div> | |
25 <div class="boxlistcontent"> | |
26 <roundcube:object name="messagePartControls" class="records-table" cellspacing="0" /> | |
27 </div> | |
28 </div> | |
29 <div id="messagepartcontainer"> | |
30 <roundcube:object name="messagePartFrame" id="messagepartframe" width="100%" height="100%" /> | |
31 </div> | |
32 </div> | |
33 <script type="text/javascript"> | |
34 var mailpartsplit = new rcube_splitter({id:'mailpartsplitter', p1: 'messagepartheader', p2: 'messagepartcontainer', orientation: 'v', relative: true, start: 165}); | |
35 rcmail.add_onload('mailpartsplit.init()'); | |
36 </script> | |
37 | |
38 </body> | |
39 </html> |