diff options
author | Mario Vavti <mario@mariovavti.com> | 2016-04-01 00:16:39 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2016-04-01 00:16:39 +0200 |
commit | 50d9b2934742ad9fb0dc8354d405789e3c14cd00 (patch) | |
tree | a3dc02d0d7430078b0d6cfe8cb816d6ed63e233a /view/tpl/mail_display.tpl | |
parent | 90a5ba01a35aeb3629ebe76069e68c64b913a4d5 (diff) | |
download | volse-hubzilla-50d9b2934742ad9fb0dc8354d405789e3c14cd00.tar.gz volse-hubzilla-50d9b2934742ad9fb0dc8354d405789e3c14cd00.tar.bz2 volse-hubzilla-50d9b2934742ad9fb0dc8354d405789e3c14cd00.zip |
slightly change the way fullscreen works and bring it to mod mail
Diffstat (limited to 'view/tpl/mail_display.tpl')
-rwxr-xr-x | view/tpl/mail_display.tpl | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/view/tpl/mail_display.tpl b/view/tpl/mail_display.tpl index 24e763571..a7754daf2 100755 --- a/view/tpl/mail_display.tpl +++ b/view/tpl/mail_display.tpl @@ -1,8 +1,12 @@ <div class="generic-content-wrapper"> <div class="section-title-wrapper"> - {{if $mailbox == 'combined'}} - <a class="btn btn-xs btn-danger pull-right" href="mail/{{$mailbox}}/dropconv/{{$thread_id}}" onclick="return confirmDelete();"><i class="icon-trash"></i> {{$delete}}</a> - {{/if}} + <div class="pull-right"> + <button id="fullscreen-btn" type="button" class="btn btn-default btn-xs" onclick="makeFullScreen();"><i class="icon-resize-full"></i></button> + <button id="inline-btn" type="button" class="btn btn-default btn-xs" onclick="makeFullScreen(false);"><i class="icon-resize-small"></i></button> + {{if $mailbox == 'combined'}} + <a class="btn btn-xs btn-danger" href="mail/{{$mailbox}}/dropconv/{{$thread_id}}" onclick="return confirmDelete();"><i class="icon-trash"></i> {{$delete}}</a> + {{/if}} + </div> <h2>{{$prvmsg_header}}</h2> <div class="clear"></div> </div> |