diff options
author | Jeroen <jeroenpraat@xs4all.nl> | 2014-07-27 21:44:34 +0000 |
---|---|---|
committer | Jeroen <jeroenpraat@xs4all.nl> | 2014-07-27 21:44:34 +0000 |
commit | 075fc6727762d4e45ddcae5843eec0100ad3ab72 (patch) | |
tree | 26c5b8b5c8064b0670510009d42f7b0ffac6c63d /view/tpl/photo_view.tpl | |
parent | 73a0d8b5a7079e960717c46014b9255e16356ad2 (diff) | |
download | volse-hubzilla-075fc6727762d4e45ddcae5843eec0100ad3ab72.tar.gz volse-hubzilla-075fc6727762d4e45ddcae5843eec0100ad3ab72.tar.bz2 volse-hubzilla-075fc6727762d4e45ddcae5843eec0100ad3ab72.zip |
Improved photo view page. Added a delete button, stylized other button and rearangend divs a but. I even made a javascript function (copied is the right word). I changed the application (non-posts) font size (temporary) to 14px, same as button (btn) font size. I like to change all font sizes to 1.0rem (posts) and 0.8rem (application) in the near future, but I will test that first on my hub.
Diffstat (limited to 'view/tpl/photo_view.tpl')
-rwxr-xr-x | view/tpl/photo_view.tpl | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/view/tpl/photo_view.tpl b/view/tpl/photo_view.tpl index 0c16eb362..25bb58d74 100755 --- a/view/tpl/photo_view.tpl +++ b/view/tpl/photo_view.tpl @@ -9,8 +9,8 @@ </div> {{if $prevlink}}<div id="photo-prev-link"><a href="{{$prevlink.0}}"><i class="icon-backward photo-icons"></i></div>{{/if}} +<div id="photo-view-wrapper"> <div id="photo-photo"><a href="{{$photo.href}}" title="{{$photo.title}}" onclick="$.colorbox({href: '{{$photo.href}}'}); return false;"><img style="max-width: 100%;" src="{{$photo.src}}"></a></div> -{{if $nextlink}}<div id="photo-next-link"><a href="{{$nextlink.0}}"><i class="icon-forward photo-icons"></i></a></div>{{/if}} <div id="photo-photo-end"></div> <div id="photo-caption">{{$desc}}</div> {{if $tags}} @@ -22,7 +22,7 @@ {{/if}} {{if $edit}} -<div id="photo-edit-edit-wrapper" class="fakelink" onclick="openClose('photo-edit-edit');">{{$edit.edit}}</div> +<div id="photo-edit-edit-wrapper" class="btn btn-default fakelink" onclick="openClose('photo-edit-edit'); closeOpen('photo-photo-delete-button')">{{$edit.edit}}</div> <div id="photo-edit-edit" style="display: none;"> <form action="photos/{{$edit.nickname}}/{{$edit.resource_id}}" method="post" id="photo_edit_form"> @@ -77,6 +77,11 @@ </div> {{/if}} + +<form action="photos/{{$edit.nickname}}/{{$edit.resource_id}}" method="post"> + <input id="photo-photo-delete-button" type="submit" name="delete" value="{{$edit.delete}}" onclick="return confirmDelete();"> +</form> + {{if $likebuttons}} <div id="photo-like-div"> {{$likebuttons}} @@ -87,5 +92,9 @@ {{$comments}} +</div> + +{{if $nextlink}}<div id="photo-next-link"><a href="{{$nextlink.0}}"><i class="icon-forward photo-icons"></i></a></div>{{/if}} + {{$paginate}} |