source: github/skins/larry/templates/compose.html @ 4deb1ef

HEADcourier-fixdev-browser-capabilitiespdorelease-0.8
Last change on this file since 4deb1ef was 4deb1ef, checked in by thomascube <thomas@…>, 17 months ago

Use new short labels for compose toolbar buttons

  • Property mode set to 100644
File size: 8.1 KB
Line 
1<roundcube:object name="doctype" value="html5" />
2<html>
3<head>
4<title><roundcube:object name="pagetitle" /></title>
5<roundcube:include file="/includes/links.html" />
6<link rel="stylesheet" type="text/css" href="/googiespell.css" />
7</head>
8<body>
9
10<roundcube:include file="/includes/header.html" />
11
12<div id="mainscreen">
13
14<div id="composeview-left">
15
16<!-- inline address book -->
17<div id="compose-contacts" class="uibox listbox">
18<h2 class="boxtitle"><roundcube:label name="contacts" /></h2>
19<div class="scroller withfooter">
20       
21</div>
22<div class="boxfooter">
23        <roundcube:button command="add-recipient" prop="to" type="link" title="to" class="listbutton addto disabled" classAct="listbutton addto" innerClass="inner" content="To+" /><roundcube:button command="add-recipient" prop="cc" type="link" title="cc" class="listbutton addcc disabled" classAct="listbutton addcc" innerClass="inner" content="Cc+" /><roundcube:button command="add-recipient" prop="bcc" type="link" title="bcc" class="listbutton addbcc disabled" classAct="listbutton addbcc" innerClass="inner" content="Bcc+" />
24</div>
25</div>
26
27</div>
28
29<div id="composeview-right">
30
31<!-- toolbar -->
32<div id="messagetoolbar" class="fullwidth">
33<div id="mailtoolbar" class="toolbar">
34        <roundcube:button command="spellcheck" type="link" class="button spellcheck disabled" classAct="button spellcheck" classSel="button spellcheck pressed" label="spellcheck" title="checkspelling" />
35        <roundcube:button name="addattachment" type="link" class="button attach" classAct="button attach" classSel="button attach pressed" label="attach" title="addattachment" onclick="UI.show_uploadform();return false" />
36        <roundcube:button command="insert-sig" type="link" class="button insertsig disabled" classAct="button insertsig" classSel="button insertsig pressed" label="signature" title="insertsignature" />
37        <roundcube:container name="toolbar" id="compose-toolbar" />
38</div>
39</div>
40
41<form name="form" action="./" method="post" id="compose-content" class="uibox">
42
43<!-- message headers -->
44<div id="composeheaders">
45
46<table class="headers-table compose-headers">
47<tbody>
48        <tr>
49                <td class="title"><label for="_from"><roundcube:label name="from" /></label></td>
50                <td class="editfield">
51                        <roundcube:object name="composeHeaders" part="from" form="form" id="_from" tabindex="1" />
52                        <a href="#identities" onclick="return rcmail.command('identities')" class="iconlink edit"><roundcube:label name="editidents" /></a>
53                </td>
54        </tr><tr>
55                <td class="title top"><label for="_to"><roundcube:label name="to" /></label></td>
56                <td class="editfield"><roundcube:object name="composeHeaders" part="to" form="form" id="_to" cols="70" rows="1" tabindex="2" /></td>
57        </tr><tr id="compose-cc">
58                <td class="title top">
59                        <label for="_cc"><roundcube:label name="cc" /></label>
60                        <a href="#cc" onclick="return UI.hide_header_row('cc');" class="iconbutton cancel" title="<roundcube:label name='delete' />" />x</a>
61                </td>
62                <td class="editfield"><roundcube:object name="composeHeaders" part="cc" form="form" id="_cc" cols="70" rows="1" tabindex="3" /></td>
63        </tr><tr id="compose-bcc">
64                <td class="title top">
65                        <label for="_bcc"><roundcube:label name="bcc" /></label>
66                        <a href="#bcc" onclick="return UI.hide_header_row('bcc');" class="iconbutton cancel"title="<roundcube:label name='delete' />" />x</a>
67                </td>
68                <td colspan="2" class="editfield"><roundcube:object name="composeHeaders" part="bcc" form="form" id="_bcc" cols="70" rows="1" tabindex="4" /></td>
69        </tr><tr id="compose-replyto">
70                <td class="title top">
71                        <label for="_replyto"><roundcube:label name="replyto" /></label>
72                        <a href="#replyto" onclick="return UI.hide_header_row('replyto');" class="iconbutton cancel" title="<roundcube:label name='delete' />" />x</a>
73                </td>
74                <td class="editfield"><roundcube:object name="composeHeaders" part="replyto" form="form" id="_replyto" size="70" tabindex="5" /></td>
75        </tr><tr id="compose-followupto">
76                <td class="title top">
77                        <label for="_followupto"><roundcube:label name="followupto" /></label>
78                        <a href="#followupto" onclick="return UI.hide_header_row('followupto');" class="iconbutton cancel" title="<roundcube:label name='delete' />" />x</a>
79                </td>
80                <td class="editfield"><roundcube:object name="composeHeaders" part="followupto" form="form" id="_followupto" size="70" tabindex="7" /></td>
81        </tr><tr>
82                <td></td>
83                <td class="formlinks">
84                        <a href="#cc" onclick="return UI.show_header_row('cc')" id="cc-link" class="iconlink add"><roundcube:label name="addcc" /></a>
85                        <a href="#bcc" onclick="return UI.show_header_row('bcc')" id="bcc-link" class="iconlink add"><roundcube:label name="addbcc" /></a>
86                        <a href="#reply-to" onclick="return UI.show_header_row('replyto')" id="replyto-link" class="iconlink add"><roundcube:label name="addreplyto" /></a>
87                        <a href="#followup-to" onclick="return UI.show_header_row('followupto')" id="followupto-link" class="iconlink add"><roundcube:label name="addfollowupto" /></a>
88                </td>
89        </tr><tr>
90                <td class="title"><label for="compose-subject"><roundcube:label name="subject" /></label></td>
91                <td class="editfield"><roundcube:object name="composeSubject" id="compose-subject" form="form" tabindex="8" /></td>
92        </tr>
93</tbody>
94</table>
95
96<div id="composebuttons" class="formbuttons">
97        <roundcube:button type="input" command="send" class="button mainaction" label="sendmessage" tabindex="10" />
98        <roundcube:button type="input" command="savedraft" class="button" label="savemessage" tabindex="10" />
99        <roundcube:button type="input" command="list" class="button" label="cancel" tabindex="11" />
100</div>
101
102</div>
103
104<!-- (collapsable) message options -->
105<div id="composeoptionsbox">
106        <span class="composeoption">
107                <label><roundcube:label name="options" />
108                        <a href="#options" id="composeoptionstoggle">&nbsp;</a></label>
109        </span>
110       
111        <div id="composeoptions">
112                <roundcube:if condition="!in_array('htmleditor', (array)config:dont_override)" />
113                <span class="composeoption">
114                        <label><roundcube:label name="editortype" />
115                                <roundcube:object name="editorSelector" editorid="composebody" tabindex="12" /></label>
116                </span>
117                <roundcube:endif />
118                <span class="composeoption">
119                        <label><label for="rcmcomposepriority"><roundcube:label name="priority" />
120                                <roundcube:object name="prioritySelector" form="form" id="rcmcomposepriority" /></label>
121                </span>
122                <span class="composeoption">
123                        <label><roundcube:object name="receiptCheckBox" form="form" id="rcmcomposereceipt" /> <roundcube:label name="returnreceipt" /></label>
124                </span>
125                <span class="composeoption">
126                        <label><roundcube:object name="dsnCheckBox" form="form" id="rcmcomposedsn" /> <roundcube:label name="dsn" /></label>
127                </span>
128                <span class="composeoption">
129                        <label><roundcube:label name="savesentmessagein" /> <roundcube:object name="storetarget" maxlength="30" style="max-width:12em" /></label>
130                </span>
131                <roundcube:container name="composeoptions" id="composeoptions" />
132        </div>
133</div>
134
135<!-- message compose body -->
136<div id="composeview-bottom">
137        <div id="composebodycontainer">
138                <div id="spellcheck-control"></div>
139                <roundcube:object name="composeBody" id="composebody" form="form" cols="70" rows="20" tabindex="9" />
140        </div>
141        <div id="compose-attachments" class="rightcol">
142                <div style="text-align:center; margin-bottom:20px">
143                        <roundcube:button name="addattachment" type="input" class="button" classSel="button pressed" label="addattachment" onclick="UI.show_uploadform();return false" />
144                </div>
145                <roundcube:object name="composeAttachmentList" id="attachment-list" cancelIcon="/images/0.gif" />
146        </div>
147</div>
148
149</form>
150
151<div id="mailview-bottom" class="uibox">
152        <roundcube:object name="message" id="message" class="statusbar" />
153</div>
154
155</div><!-- end mailview-right -->
156
157</div><!-- end mainscreen -->
158
159<div id="upload-dialog" class="propform popupdialog" title="<roundcube:label name='addattachment' />">
160        <roundcube:object name="composeAttachmentForm" id="uploadform" attachmentFieldSize="40" buttons="no" />
161        <div class="formbuttons">
162                <roundcube:button command="send-attachment" type="input" class="button mainaction" label="upload" />
163                <roundcube:button name="close" type="input" class="button" label="cancel" onclick="UI.show_uploadform()" />
164        </div>
165</div>
166
167<roundcube:include file="/includes/footer.html" />
168
169</body>
170</html>
Note: See TracBrowser for help on using the repository browser.