diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-10-10 08:53:52 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-10-10 08:53:52 +0000 |
| commit | 511fa6178ab72a5d980ab7c189fbb685eb7c80fa (patch) | |
| tree | 27c5b81d8a9fcfd1bf0988d8f86cd5e98e6c6b60 /roundcubemail/skins/default/templates | |
| parent | 93af327ec10d28026ae39326658fdc2a91b76010 (diff) | |
- Fix 'Empty' link visibility for some languages e.g. Slovak (#1485489)
- Fix messages count bar overlapping (#1485270)
git-svn-id: https://svn.roundcube.net/trunk@1969 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/skins/default/templates')
| -rw-r--r-- | roundcubemail/skins/default/templates/mail.html | 25 |
1 files changed, 16 insertions, 9 deletions
diff --git a/roundcubemail/skins/default/templates/mail.html b/roundcubemail/skins/default/templates/mail.html index 71bad46c4..6a6347932 100644 --- a/roundcubemail/skins/default/templates/mail.html +++ b/roundcubemail/skins/default/templates/mail.html @@ -75,29 +75,36 @@ </div> -<div id="mailboxcontrols"> +<div id="mailfooter"> +<table cellpadding="1" cellspacing="0"> +<tr> +<td width="99%"> +<span id="mailboxcontrols"> <roundcube:label name="folder" />: <roundcube:button command="expunge" label="compact" classAct="active" /> <roundcube:button command="purge" label="empty" classAct="active" /> -</div> - - -<div id="listcontrols"> +</span> +<span id="listcontrols"> <roundcube:label name="select" />: <roundcube:button command="select-all" label="all" classAct="active" /> <roundcube:button command="select-all" prop="unread" label="unread" classAct="active" /> -<roundcube:button command="select-none" label="none" classAct="active" /> +<roundcube:button command="select-none" label="none" classAct="active" /> <roundcube:if condition="env:quota" /> <roundcube:label name="quota" />: <roundcube:object name="quotaDisplay" display="image" width="100" id="quotadisplay" /> <roundcube:endif /> -</div> - -<div id="messagecountbar"> +</span> +</td> +<td width="1%"> +<span id="countcontrols"> <roundcube:button command="firstpage" imageSel="/images/buttons/first_sel.png" imageAct="/images/buttons/first_act.png" imagePas="/images/buttons/first_pas.png" width="11" height="11" title="firstmessages" /> <roundcube:button command="previouspage" imageSel="/images/buttons/previous_sel.png" imageAct="/images/buttons/previous_act.png" imagePas="/images/buttons/previous_pas.png" width="11" height="11" title="previousmessages" /> <roundcube:object name="messageCountDisplay" /> <roundcube:button command="nextpage" imageSel="/images/buttons/next_sel.png" imageAct="/images/buttons/next_act.png" imagePas="/images/buttons/next_pas.png" width="11" height="11" title="nextmessages" /> <roundcube:button command="lastpage" imageSel="/images/buttons/last_sel.png" imageAct="/images/buttons/last_act.png" imagePas="/images/buttons/last_pas.png" width="11" height="11" title="lastmessages" /> +</span> +</td> +</tr> +</table> </div> <div id="messagetoolbar"> |
