diff options
| author | Nathan Kinkade <nkinkade@nkinka.de> | 2009-03-06 00:53:26 +0000 |
|---|---|---|
| committer | Nathan Kinkade <nkinkade@nkinka.de> | 2009-03-11 12:51:51 +0000 |
| commit | d7e32a290895d866543ea4bff692b2dcdf004538 (patch) | |
| tree | acf89e6bae9417246c5c6446e4636816c7cf0ec5 | |
| parent | 5bfd4c0eec77052293077a9e2658ecbae1d0dea1 (diff) | |
Added the actual copyto dropdown to the template, and some related CSS.
| -rw-r--r-- | roundcubemail/skins/npk/mail.css | 7 | ||||
| -rw-r--r-- | roundcubemail/skins/npk/templates/message.html | 3 |
2 files changed, 9 insertions, 1 deletions
diff --git a/roundcubemail/skins/npk/mail.css b/roundcubemail/skins/npk/mail.css index d418b506b..80fe063b9 100644 --- a/roundcubemail/skins/npk/mail.css +++ b/roundcubemail/skins/npk/mail.css @@ -33,6 +33,13 @@ top: 8px; } +#messagetoolbar select.copy_mboxlist +{ + position: absolute; + left: 515px; + top: 8px; +} + #messagetoolbar select.mboxlist option { padding-left: 15px; diff --git a/roundcubemail/skins/npk/templates/message.html b/roundcubemail/skins/npk/templates/message.html index 8d915e056..f25bcf489 100644 --- a/roundcubemail/skins/npk/templates/message.html +++ b/roundcubemail/skins/npk/templates/message.html @@ -37,7 +37,8 @@ <roundcube:button command="viewsource" imageSel="/images/buttons/source_sel.png" imageAct="/images/buttons/source_act.png" imagePas="/images/buttons/source_pas.png" width="32" height="32" title="viewsource" /> <roundcube:object name="mailboxlist" type="select" noSelection="moveto" maxlength="25" onchange="rcmail.command('moveto', this.options[this.selectedIndex].value)" class="mboxlist" /> -<roundcube:object name="mailboxlist" type="select" noSelection="copyto" maxlength="25" onchange="rcmail.command('copyto', this.options[this.selectedIndex].value)" class="mboxlist" /> + +<roundcube:object name="mailboxlist" type="select" noSelection="copyto" maxlength="25" onchange="rcmail.command('copyto', this.options[this.selectedIndex].value)" class="copy_mboxlist" /> </div> |
