Mercurial > hg > rc1
comparison skins/classic/templates/folders.html @ 0:1e000243b222
vanilla 1.3.3 distro, I hope
| author | Charlie Root |
|---|---|
| date | Thu, 04 Jan 2018 15:50:29 -0500 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:1e000243b222 |
|---|---|
| 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="/functions.js"></script> | |
| 7 <script type="text/javascript" src="/splitter.js"></script> | |
| 8 <style type="text/css"> | |
| 9 #folder-manager { width: <roundcube:exp expression="!empty(cookie:folderviewsplitter) ? cookie:folderviewsplitter-5 : 295" />px; } | |
| 10 #folder-box { left: <roundcube:exp expression="!empty(cookie:folderviewsplitter) ? cookie:folderviewsplitter+5 : 305" />px; } | |
| 11 </style> | |
| 12 </head> | |
| 13 <body> | |
| 14 | |
| 15 <roundcube:include file="/includes/taskbar.html" /> | |
| 16 <roundcube:include file="/includes/header.html" /> | |
| 17 <roundcube:include file="/includes/settingstabs.html" /> | |
| 18 | |
| 19 <div id="mainscreen"> | |
| 20 | |
| 21 <div id="folder-manager"> | |
| 22 <div id="folderlist-title" class="boxtitle"> | |
| 23 <roundcube:label name="folders" /> | |
| 24 <a href="#folders" class="iconbutton search" title="<roundcube:label name='findfolders' />" tabindex="0"><roundcube:label name='findfolders' /></a> | |
| 25 </div> | |
| 26 <div class="listsearchbox"> | |
| 27 <roundcube:object name="folderfilter" id="folderlist-filter" /> | |
| 28 <div class="searchbox" role="search"> | |
| 29 <input type="text" name="q" id="foldersearch" placeholder="<roundcube:label name='findfolders' />" /> | |
| 30 <a class="iconbutton searchicon"></a> | |
| 31 <roundcube:button command="reset-foldersearch" id="folderlistsearch-reset" class="iconbutton reset" title="resetsearch" width="13" height="13" /> | |
| 32 </div> | |
| 33 </div> | |
| 34 <div id="folderlist-content" class="boxlistcontent"> | |
| 35 <roundcube:object name="foldersubscription" form="subscriptionform" id="subscription-table" | |
| 36 summary="Folder subscription table" class="treelist folderlist" /> | |
| 37 </div> | |
| 38 <div id="folderlist-footer" class="boxfooter"> | |
| 39 <roundcube:button command="create-folder" type="link" title="createfolder" class="buttonPas addgroup" classAct="button addgroup" content=" " /> | |
| 40 <roundcube:button name="mailboxmenulink" id="mailboxmenulink" type="link" title="folderactions" class="button groupactions" onclick="rcmail_ui.show_popup('mailboxmenu');return false" content=" " /> | |
| 41 | |
| 42 <roundcube:if condition="env:quota" /> | |
| 43 <img id="quotaimg" src="/images/quota.png" alt="" width="102" height="16" /> | |
| 44 <div id="quota"> | |
| 45 <roundcube:object name="quotaDisplay" display="image" width="100" height="14" id="quotadisplay" /> | |
| 46 </div> | |
| 47 <roundcube:endif /> | |
| 48 </div> | |
| 49 </div> | |
| 50 | |
| 51 <script type="text/javascript"> | |
| 52 var folderviewsplit = new rcube_splitter({id:'folderviewsplitter', p1: 'folder-manager', p2: 'folder-box', orientation: 'v', relative: true, start: 300 }); | |
| 53 rcmail.add_onload('folderviewsplit.init()'); | |
| 54 </script> | |
| 55 | |
| 56 <div id="folder-box"> | |
| 57 <roundcube:object name="folderframe" id="folder-frame" width="100%" height="100%" frameborder="0" src="/watermark.html" /> | |
| 58 </div> | |
| 59 | |
| 60 </div> | |
| 61 | |
| 62 <div id="mailboxoptionsmenu" class="popupmenu"> | |
| 63 <ul> | |
| 64 <li><roundcube:button command="delete-folder" label="delete" classAct="active" /></li> | |
| 65 <li><roundcube:button command="purge" type="link" label="empty" classAct="active" /></li> | |
| 66 <roundcube:container name="mailboxoptions" id="mailboxoptionsmenu" /> | |
| 67 </ul> | |
| 68 </div> | |
| 69 | |
| 70 <script type="text/javascript"> | |
| 71 rcube_init_mail_ui(); | |
| 72 </script> | |
| 73 | |
| 74 </body> | |
| 75 </html> |
