1
0
Fork 0

photo editing

This commit is contained in:
Mike Macgirvin 2010-08-08 01:58:26 -07:00
commit c9d8211ae7
6 changed files with 79 additions and 7 deletions

View file

@ -1,11 +1,17 @@
<form action="photos" method="post" id="photo_edit_form" >
<form action="photos/$id" method="post" id="photo_edit_form" >
<input type="hidden" name="item_id" value="$item_id" />
<label id="photo-edit-caption-label" for="photo-edit-caption">$capt_label</label>
<input type="text size="64" name="desc" value="$caption" />
<input id="photo-edit-caption" type="text" size="64" name="desc" value="$caption" />
<div id="photo-edit-caption-end"></div>
<label id="photo-edit-tags-label" for="photo-edit-tags-textarea" >$tag_label</label>
<textarea name="tags" id="photo-edit-tags-textarea">$tags</textarea>
<div id="photo-edit-tags-end"></div>
<input type="submit" name="submit" value="$submit" />
<div id="photo-edit-end"></div>
</form>

View file

@ -1339,3 +1339,33 @@ input#dfrn-url {
text-decoration: underline;
cursor: pointer;
}
#photo-edit-caption-label, #photo-edit-tags-label {
float: left;
width: 150px;
}
#photo-edit-caption, #photo-edit-tags-textarea {
float: left;
}
#photo-edit-caption-end, #photo-edit-tags-end {
clear: both;
}
#photo-caption {
font-size: 110%;
font-weight: bold;
margin-top: 15px;
margin-bottom: 15px;
}
#in-this-photo-text {
color: #0000FF;
margin-left: 30px;
}
#in-this-photo {
margin-left: 60px;
margin-top: 10px;
margin-bottom: 20px;
}