diff options
Diffstat (limited to 'skins/larry/templates')
-rw-r--r-- | skins/larry/templates/mail.html | 76 | ||||
-rw-r--r-- | skins/larry/templates/settings.html | 29 | ||||
-rw-r--r-- | skins/larry/templates/settingsedit.html | 22 |
3 files changed, 125 insertions, 2 deletions
diff --git a/skins/larry/templates/mail.html b/skins/larry/templates/mail.html index 56c7cae95..294d1cec9 100644 --- a/skins/larry/templates/mail.html +++ b/skins/larry/templates/mail.html @@ -8,11 +8,83 @@ <roundcube:include file="/includes/header.html" /> -<div id="mainscreen" class="uibox"> +<div id="mainscreen"> -<!-- just an example for now --> +<div id="mailview-left"> +<!-- search box --> +<div id="quicksearchbar"> +<roundcube:button name="searchmenulink" id="searchmenulink" class="iconbutton searchoptions" _onclick="rcmail_ui.show_popup('searchmenu');return false" title="searchmod" content=" " /> +<roundcube:object name="searchform" id="quicksearchbox" /> +<roundcube:button command="reset-search" id="searchreset" class="iconbutton reset" title="resetsearch" content=" " /> </div> +<!-- folders list --> +<div id="mailboxcontainer" class="uibox listbox"> +<div class="scroller"> +<roundcube:object name="mailboxlist" id="mailboxlist"class="listing" folder_filter="mail" /> +</div> +<div class="boxfooter"> + <roundcube:button name="mailboxmenulink" id="mailboxmenulink" type="link" title="folderactions" class="listbutton groupactions" _onclick="rcmail_ui.show_popup('mailboxmenu');return false" content=" " /> +</div> +</div> + +</div> + +<div id="mailview-right"> + +<!-- search filter --> +<div id="searchfilter"> + <roundcube:object name="searchfilter" class="searchfilter" /> +</div> + +<!-- toolbar --> +<div id="messagetoolbar"> +<!-- roundcube:include file="/includes/messagetoolbar.html" /--> +</div> + +<div id="mailview-top"> + +<!-- messagelist --> +<div id="messagelistcontainer" class="uibox boxlistcontent"> +<roundcube:object name="messages" + id="messagelist" + cellspacing="0" + columns="" + summary="Message list" + optionsmenuIcon="true" /> +</div> + +<!-- list footer --> +<div id="messagelistfooter"> + <div id="listcontrols"> + + </div> + + <div id="countcontrols" class="pagenav"> + <roundcube:object name="messageCountDisplay" class="countdisplay" /> + <roundcube:button command="firstpage" type="link" class="button firstpage disabled" classAct="button firstpage" classSel="button firstpage pressed" innerClass="inner" title="firstpage" content="|&lt;" /> + <roundcube:button command="previouspage" type="link" class="button prevpage disabled" classAct="button prevpage" classSel="button prevpage pressed" innerClass="inner" title="previouspage" content="&lt;" /> + <roundcube:button command="nextpage" type="link" class="button nextpage disabled" classAct="button nextpage" classSel="button nextpage pressed" innerClass="inner" title="nextpage" content="&gt;" /> + <roundcube:button command="lastpage" type="link" class="button lastpage disabled" classAct="button lastpage" classSel="button lastpage pressed" innerClass="inner" title="lastpage" content="&gt;|" /> +</div> + +</div> + +</div><!-- end mailview-top --> + +<div id="mailview-bottom" class="uibox"> +<div id="mailpreviewframe"> +</div> + +<roundcube:object name="message" id="message" class="statusbar" /> + +</div><!-- end mailview-bottom --> + +</div><!-- end mailview-right --> + +</div><!-- end mainscreen --> + + </body> </html> diff --git a/skins/larry/templates/settings.html b/skins/larry/templates/settings.html new file mode 100644 index 000000000..15592a264 --- /dev/null +++ b/skins/larry/templates/settings.html @@ -0,0 +1,29 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<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="sectionslist" class="uibox listbox"> +<div class="scroller"> + <roundcube:object name="sectionslist" id="sections-table" class="listing" cellspacing="0" /> +</div> +</div> + +<div id="preferences-box" class="uibox contentbox"> +<roundcube:object name="prefsframe" id="preferences-frame" width="100%" height="97%" frameborder="0" src="about:blank" /> +<roundcube:object name="message" id="message" class="statusbar" /> +</div> + +</div> + +</body> +</html> diff --git a/skins/larry/templates/settingsedit.html b/skins/larry/templates/settingsedit.html new file mode 100644 index 000000000..afcbeb590 --- /dev/null +++ b/skins/larry/templates/settingsedit.html @@ -0,0 +1,22 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<title><roundcube:object name="pagetitle" /></title> +<roundcube:include file="/includes/links.html" /> +</head> +<body class="iframe"> + +<h1 class="boxtitle"><roundcube:object name="sectionname" /></h1> + +<div id="preferences-details" class="boxcontent"> +<roundcube:object name="userprefs" form="form" class="propform" cellspacing="0" /> +</div> + +<div id="formfooter"> +<div class="footerleft"> +<roundcube:button command="save" type="input" class="button mainaction" label="save" /> +</div> +</div> + +</body> +</html> |