diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2012-04-03 13:42:51 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2012-04-03 13:42:51 +0000 |
| commit | 64149c3612d47b9d8c799cb2b336639aa1be5651 (patch) | |
| tree | a8873035d02a7e5474f294c3c35d161642b2a928 | |
| parent | e6d8f97bf2e0bbb4d95df0c4e030eb7ec6ef75a5 (diff) | |
- Fix tabindex order
git-svn-id: https://svn.roundcube.net/trunk@6035 208e9e7b-5314-0410-a742-e7e81cd9613c
| -rw-r--r-- | roundcubemail/skins/larry/templates/compose.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/roundcubemail/skins/larry/templates/compose.html b/roundcubemail/skins/larry/templates/compose.html index 0c1b81759..a4c9fc10d 100644 --- a/roundcubemail/skins/larry/templates/compose.html +++ b/roundcubemail/skins/larry/templates/compose.html @@ -108,9 +108,9 @@ </table> <div id="composebuttons" class="formbuttons"> - <roundcube:button type="input" command="send" class="button mainaction" label="sendmessage" tabindex="10" /> - <roundcube:button type="input" command="savedraft" class="button" label="savemessage" tabindex="10" /> - <roundcube:button type="input" command="list" class="button" label="cancel" tabindex="11" /> + <roundcube:button type="input" command="send" class="button mainaction" label="sendmessage" tabindex="11" /> + <roundcube:button type="input" command="savedraft" class="button" label="savemessage" tabindex="12" /> + <roundcube:button type="input" command="list" class="button" label="cancel" tabindex="13" /> </div> </div> @@ -126,7 +126,7 @@ <roundcube:if condition="!in_array('htmleditor', (array)config:dont_override)" /> <span class="composeoption"> <label><roundcube:label name="editortype" /> - <roundcube:object name="editorSelector" editorid="composebody" tabindex="12" /></label> + <roundcube:object name="editorSelector" editorid="composebody" tabindex="14" /></label> </span> <roundcube:endif /> <span class="composeoption"> @@ -153,7 +153,7 @@ </div> <div id="compose-attachments" class="rightcol"> <div style="text-align:center; margin-bottom:20px"> - <roundcube:button name="addattachment" type="input" class="button" classSel="button pressed" label="addattachment" onclick="UI.show_uploadform();return false" /> + <roundcube:button name="addattachment" type="input" class="button" classSel="button pressed" label="addattachment" onclick="UI.show_uploadform();return false" tabindex="10" /> </div> <roundcube:object name="composeAttachmentList" id="attachment-list" class="attachmentslist" cancelIcon="/images/0.gif" /> </div> |
