diff options
author | thomascube <thomas@roundcube.net> | 2011-12-31 11:54:56 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2011-12-31 11:54:56 +0000 |
commit | b9441a1632638c23c118867543f6477cecb8134d (patch) | |
tree | 7549b94cf872e2d46eaff39bca29b45f42f5f67b /skins/larry/templates | |
parent | 3a7deca53606476bebf83cb2c04793b2a77325d3 (diff) |
Give more space to some toolbar buttons; add missing template for message errors
Diffstat (limited to 'skins/larry/templates')
-rw-r--r-- | skins/larry/templates/importcontacts.html | 2 | ||||
-rw-r--r-- | skins/larry/templates/messageerror.html | 54 |
2 files changed, 56 insertions, 0 deletions
diff --git a/skins/larry/templates/importcontacts.html b/skins/larry/templates/importcontacts.html index bdc1f3f51..89aea0a2e 100644 --- a/skins/larry/templates/importcontacts.html +++ b/skins/larry/templates/importcontacts.html @@ -20,6 +20,8 @@ <div class="boxcontent readtext"> <roundcube:object name="importstep" /> +<br/> + <p class="formbuttons"> <roundcube:object name="importnav" class="button" /> </p> diff --git a/skins/larry/templates/messageerror.html b/skins/larry/templates/messageerror.html new file mode 100644 index 000000000..70181f174 --- /dev/null +++ b/skins/larry/templates/messageerror.html @@ -0,0 +1,54 @@ +<roundcube:object name="doctype" value="html5" /> +<html> +<head> +<title><roundcube:object name="pagetitle" /></title> +<roundcube:include file="/includes/links.html" /> +</head> +<roundcube:if condition="env:action != 'show'" /> +<body class="iframe fullheight"> + +<div id="mainscreen" class="watermark" style="top:0"></div> + +<roundcube:else /> +<body> + +<roundcube:include file="/includes/header.html" /> + +<div id="mainscreen"> + +<div id="mailview-left"> + +<!-- folders list --> +<div id="mailboxcontainer" class="uibox listbox"> +<div class="scroller"> + <roundcube:object name="mailboxlist" id="mailboxlist" class="listing" folder_filter="mail" unreadwrap="%s" /> +</div> +</div> + +</div> + +<div id="mailview-right"> + +<!-- toolbar --> +<div id="messagetoolbar" class="fullwidth"> + <div id="mailtoolbar" class="toolbar"> + <roundcube:button command="list" type="link" class="button back disabled" classAct="button back" classSel="button back pressed" label="back" /> + </div> +</div> + +<div id="mailview-top" class="uibox watermark"></div> + +<div id="mailview-bottom" class="uibox"> + <roundcube:object name="message" id="message" class="statusbar" /> +</div> + +</div><!-- end mailview-right --> + +</div><!-- end mainscreen --> + +<roundcube:include file="/includes/footer.html" /> + +<roundcube:endif /> + +</body> +</html> |