diff options
Diffstat (limited to 'view')
-rw-r--r-- | view/photo_edit.tpl | 11 | ||||
-rw-r--r-- | view/photos_upload.tpl | 10 | ||||
-rw-r--r-- | view/style.css | 19 |
3 files changed, 39 insertions, 1 deletions
diff --git a/view/photo_edit.tpl b/view/photo_edit.tpl new file mode 100644 index 000000000..7b579492f --- /dev/null +++ b/view/photo_edit.tpl @@ -0,0 +1,11 @@ + +<form action="photos" method="post" id="photo_edit_form" > + + <label id="photo-edit-caption-label" for="photo-edit-caption">$capt_label</label> + <input type="text size="64" name="desc" value="$caption" /> + + <label id="photo-edit-tags-label" for="photo-edit-tags-textarea" >$tag_label</label> + <textarea name="tags" id="photo-edit-tags-textarea">$tags</textarea> + + <input type="submit" name="submit" value="$submit" /> +</form> diff --git a/view/photos_upload.tpl b/view/photos_upload.tpl index 36e1780d5..a03779775 100644 --- a/view/photos_upload.tpl +++ b/view/photos_upload.tpl @@ -13,6 +13,16 @@ </div> <div id="photos-upload-exist-end"></div> + + <div id="photos-upload-perms" class="photos-upload-perms" ><div id="photos-upload-perms-menu" onClick="openClose('photos-upload-permissions-wrapper');" />$permissions</div> + <div id="photos-upload-perms-end"></div> + + <div id="photos-upload-permissions-wrapper" style="display: none;" > + + $aclselect + + </div> + <div id="photos-upload-select-files-text">$filestext</div> <div id="photos_upload_applet_wrapper"> diff --git a/view/style.css b/view/style.css index 4fa962033..4fbe5d20e 100644 --- a/view/style.css +++ b/view/style.css @@ -1308,4 +1308,21 @@ input#dfrn-url { #profile-jot-banner-end { clear: both; -}
\ No newline at end of file +} + +#photos-upload-select-files-text { + margin-top: 15px; + margin-bottom: 15px; +} + +#photos-upload-perms-menu, #photos-upload-perms-menu:visited { + color: #8888FF; + text-decoration: none; + cursor: pointer; +} + +#photos-upload-perms-menu:hover { + color: #0000FF; + text-decoration: underline; + cursor: pointer; +} |