diff options
author | thomascube <thomas@roundcube.net> | 2011-12-14 23:13:38 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2011-12-14 23:13:38 +0000 |
commit | b540ed15a30cd9379df7feb62b0ae81a8a111e9c (patch) | |
tree | 1059706e04f4b9af5be10e7f2a16f14a6830db13 /skins/larry/templates | |
parent | bd9190a660151c16af40c29ed63309a08fa7db04 (diff) |
Larry is growing up
Diffstat (limited to 'skins/larry/templates')
-rw-r--r-- | skins/larry/templates/folderedit.html | 27 | ||||
-rw-r--r-- | skins/larry/templates/folders.html | 43 | ||||
-rw-r--r-- | skins/larry/templates/identityedit.html | 2 | ||||
-rw-r--r-- | skins/larry/templates/mail.html | 13 | ||||
-rw-r--r-- | skins/larry/templates/messagepreview.html | 40 |
5 files changed, 122 insertions, 3 deletions
diff --git a/skins/larry/templates/folderedit.html b/skins/larry/templates/folderedit.html new file mode 100644 index 000000000..cfc8bc3d4 --- /dev/null +++ b/skins/larry/templates/folderedit.html @@ -0,0 +1,27 @@ +<roundcube:object name="doctype" value="html5" /> +<html> +<head> +<title><roundcube:object name="pagetitle" /></title> +<roundcube:include file="/includes/links.html" /> +</head> +<body class="iframe"> + +<h1 class="boxtitle"><roundcube:label name="folderproperties" /></h1> + +<div class="boxcontent"> +<roundcube:object name="folderdetails" class="propform" /> +</div> + +<div id="formfooter"> +<div class="footerleft formbuttons"> + <roundcube:button command="save" type="input" class="button mainaction" label="save" /> + <roundcube:if condition="!strlen(request:_mbox)" /> + <input type="button" value="<roundcube:label name="cancel" />" class="button" onclick="history.back()" /> + <roundcube:endif /> +</div> +</div> + +<roundcube:include file="/includes/footer.html" /> + +</body> +</html> diff --git a/skins/larry/templates/folders.html b/skins/larry/templates/folders.html new file mode 100644 index 000000000..385d2686f --- /dev/null +++ b/skins/larry/templates/folders.html @@ -0,0 +1,43 @@ +<roundcube:object name="doctype" value="html5" /> +<html> +<head> +<title><roundcube:object name="pagetitle" /></title> +<roundcube:include file="/includes/links.html" /> +</head> +<body> + +<roundcube:include file="/includes/header.html" /> + +<div id="mainscreen" class="offset"> + +<roundcube:include file="/includes/settingstabs.html" /> + +<div id="folderslist" class="uibox listbox"> +<h2 class="boxtitle"><span style="float:right"><roundcube:label name="subscribed" /></span><roundcube:label name="folders" /></h2> +<div class="scroller withfooter"> +<roundcube:object name="foldersubscription" form="subscriptionform" id="subscription-table" class="listing" noheader="true" /> +</div> +<div class="boxfooter"> + <roundcube:button command="create-folder" type="link" title="createfolder" class="listbutton add disabled" classAct="listbutton add" innerClass="inner" content="+" /><roundcube:button name="mailboxmenulink" id="mailboxmenulink" type="link" title="folderactions" class="listbutton groupactions" onclick="UI.show_popup('mailboxmenu');return false" innerClass="inner" content="⚙" /> +</div> +</div> + +<div id="folder-details" class="uibox contentbox"> + <roundcube:object name="folderframe" id="preferences-frame" style="width:100%; height:96%" src="/watermark.html" /> + <roundcube:object name="message" id="message" class="statusbar" /> +</div> + +</div> + +<div id="mailboxmenu" class="popupmenu"> + <ul class="toolbarmenu" id="mailboxoptionsmenu"> + <li><roundcube:button command="delete-folder" label="delete" classAct="active" /></li> + <li><roundcube:button command="purge" type="link" label="empty" classAct="active" /></li> + <roundcube:container name="mailboxoptions" id="mailboxoptionsmenu" /> + </ul> +</div> + +<roundcube:include file="/includes/footer.html" /> + +</body> +</html> diff --git a/skins/larry/templates/identityedit.html b/skins/larry/templates/identityedit.html index bfdf61d81..147098286 100644 --- a/skins/larry/templates/identityedit.html +++ b/skins/larry/templates/identityedit.html @@ -30,7 +30,7 @@ <p class="formbuttons"> <roundcube:button command="save" type="input" class="button mainaction" label="save" /> - <roundcube:button command="delete" type="input" class="button" label="delete" condition="env:action=='edit-identity'" style="margin-left:0.5em" /> + <roundcube:button command="delete" type="input" class="button" label="delete" condition="env:action=='edit-identity'" /> </p> </div> diff --git a/skins/larry/templates/mail.html b/skins/larry/templates/mail.html index cbaf740f8..88b7c5840 100644 --- a/skins/larry/templates/mail.html +++ b/skins/larry/templates/mail.html @@ -3,6 +3,14 @@ <head> <title><roundcube:object name="pagetitle" /></title> <roundcube:include file="/includes/links.html" /> +<style type="text/css"> +<roundcube:if condition="config:preview_pane == true" /> + #mailview-top { height: <roundcube:exp expression="!empty(cookie:mailviewsplitter) ? cookie:mailviewsplitter-38 : 300" />px; } + #mailview-bottom { top: <roundcube:exp expression="!empty(cookie:mailviewsplitter) ? cookie:mailviewsplitter+5 : 320" />px; height: auto; } + #mailpreviewframe { display: block; } +<roundcube:endif /> +</style> + </head> <body> @@ -74,8 +82,9 @@ </div><!-- end mailview-top --> <div id="mailview-bottom" class="uibox"> -<div id="mailpreviewframe"> +<div id="mailpreviewframe"> +<roundcube:object name="messagecontentframe" id="messagecontframe" style="width:100%; height:100%" src="/watermark.html" /> </div> <roundcube:object name="message" id="message" class="statusbar" /> @@ -105,7 +114,7 @@ </div> <div id="mailboxmenu" class="popupmenu"> - <ul class="toolbarmenu"> + <ul class="toolbarmenu" id="mailboxoptionsmenu"> <li><roundcube:button command="expunge" type="link" label="compact" classAct="active" /></li> <li class="separator_below"><roundcube:button command="purge" type="link" label="empty" classAct="active" /></li> <li><roundcube:button command="folders" task="settings" type="link" label="managefolders" classAct="active" /></li> diff --git a/skins/larry/templates/messagepreview.html b/skins/larry/templates/messagepreview.html new file mode 100644 index 000000000..2ea007f2c --- /dev/null +++ b/skins/larry/templates/messagepreview.html @@ -0,0 +1,40 @@ +<roundcube:object name="doctype" value="html5" /> +<html> +<head> +<title><roundcube:object name="pagetitle" /></title> +<roundcube:include file="/includes/links.html" /> +</head> +<body class="iframe fullheight"> + +<div id="messagepreviewheader"> +<h3 class="subject"><roundcube:object name="messageHeaders" valueOf="subject" /></h3> +<roundcube:object name="messageHeaders" class="headers-table" addicon="/images/addcontact.png" exclude="subject,replyto" /> +<roundcube:object name="messageFullHeaders" id="full-headers" /> + +<!-- record navigation --> +<div id="countcontrols" class="pagenav"> + <roundcube:button command="permaurl" type="link" class="button extwin" classSel="button extwin pressed" innerClass="inner" title="openinextwin" content="[]" target="_blank" /> + <roundcube:button command="viewsource" type="link" class="button viewsource" classSel="button extwin pressed" innerClass="inner" title="viewsource" content="<>" /> +<!-- + + <roundcube:button command="previousmessage" type="link" class="button pageup disabled" classAct="button pageup" classSel="button pageup pressed" innerClass="inner" title="previousmessage" content="&lt;" /> + <roundcube:button command="nextmessage" type="link" class="button pagedown disabled" classAct="button pagedown" classSel="button pagedown pressed" innerClass="inner" title="nextmessage" content="&gt;" /> +--> +</div> + +</div> + +<div id="messagepreview"> +<div class="rightcol"> +<roundcube:object name="messageAttachments" id="attachment-list" /> +</div> +<div class="leftcol"> +<roundcube:object name="messageObjects" id="message-objects" /> +<roundcube:object name="messageBody" id="messagebody" /> +</div> +</div> + +<roundcube:include file="/includes/footer.html" /> + +</body> +</html> |