diff options
author | alecpl <alec@alec.pl> | 2010-03-25 16:29:02 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2010-03-25 16:29:02 +0000 |
commit | fb7ec576ab3a353b6eb99614e9636a9096462807 (patch) | |
tree | 9397ede61815ac232bedddc728a973e1b67f0c11 /skins | |
parent | 5ffceb790602cb00f92acd8f275fe8246cb36222 (diff) |
- Added possibility to select all messages in a folder (#1484756)
Diffstat (limited to 'skins')
-rw-r--r-- | skins/default/images/mail_footer.png | bin | 1186 -> 2416 bytes | |||
-rw-r--r-- | skins/default/mail.css | 8 | ||||
-rw-r--r-- | skins/default/templates/mail.html | 1 |
3 files changed, 9 insertions, 0 deletions
diff --git a/skins/default/images/mail_footer.png b/skins/default/images/mail_footer.png Binary files differindex ab56b835f..7e0867748 100644 --- a/skins/default/images/mail_footer.png +++ b/skins/default/images/mail_footer.png diff --git a/skins/default/mail.css b/skins/default/mail.css index 0e35046c0..7b233f861 100644 --- a/skins/default/mail.css +++ b/skins/default/mail.css @@ -579,6 +579,14 @@ td.formlinks a:visited background-position: -30px -15px; } +#listcontrols a.page { + background-position: -135px 0; +} + +#listcontrols a.pagesel { + background-position: -135px -15px; +} + #listcontrols a.unread { background-position: -45px 0; } diff --git a/skins/default/templates/mail.html b/skins/default/templates/mail.html index f82aca43a..a1084b096 100644 --- a/skins/default/templates/mail.html +++ b/skins/default/templates/mail.html @@ -81,6 +81,7 @@ <div id="listcontrols"> <span><roundcube:label name="select" />: </span> <roundcube:button command="select-all" type="link" title="all" class="buttonPas all" classAct="button all" classSel="button allsel" content=" " /> + <roundcube:button command="select-all" type="link" prop="page" title="currpage" class="buttonPas page" classAct="button page" classSel="button pagesel" content=" " /> <roundcube:button command="select-all" type="link" prop="unread" title="unread" class="buttonPas unread" classAct="button unread" classSel="button unreadsel" content=" " /> <roundcube:button command="select-all" type="link" prop="invert" title="invert" class="buttonPas invert" classAct="button invert" classSel="button invertsel" content=" " /> <roundcube:button command="select-none" type="link" title="none" class="buttonPas none" classAct="button none" classSel="button nonesel" content=" " /> |