diff options
author | Mike Macgirvin <mike@macgirvin.com> | 2010-11-01 23:42:26 -0700 |
---|---|---|
committer | Mike Macgirvin <mike@macgirvin.com> | 2010-11-01 23:42:26 -0700 |
commit | d8630dbdd8217ff31581bc521ceb1cd6be9b999c (patch) | |
tree | 991ddcc47b03058cf61479faf2dedc25eb6ad039 /view | |
parent | 36a77c6db2272d7db31982642715034ce718552f (diff) | |
download | volse-hubzilla-d8630dbdd8217ff31581bc521ceb1cd6be9b999c.tar.gz volse-hubzilla-d8630dbdd8217ff31581bc521ceb1cd6be9b999c.tar.bz2 volse-hubzilla-d8630dbdd8217ff31581bc521ceb1cd6be9b999c.zip |
infrastructure for swat0 (#fsw)
Diffstat (limited to 'view')
-rw-r--r-- | view/photo_edit.tpl | 4 | ||||
-rw-r--r-- | view/tag_slap.tpl | 30 | ||||
-rw-r--r-- | view/theme/default/style.css | 7 |
3 files changed, 37 insertions, 4 deletions
diff --git a/view/photo_edit.tpl b/view/photo_edit.tpl index 176ad3244..4fdc230e7 100644 --- a/view/photo_edit.tpl +++ b/view/photo_edit.tpl @@ -8,8 +8,8 @@ <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" rows="3" cols="64" >$tags</textarea> + <label id="photo-edit-tags-label" for="photo-edit-newtag" >$tag_label</label> + <input name="newtag" id="photo-edit-newtag" size="84" title="$help_tags" type="text" /> <div id="photo-edit-tags-end"></div> <input id="photo-edit-submit-button" type="submit" name="submit" value="$submit" /> diff --git a/view/tag_slap.tpl b/view/tag_slap.tpl new file mode 100644 index 000000000..6449df496 --- /dev/null +++ b/view/tag_slap.tpl @@ -0,0 +1,30 @@ + <entry> + <author> + <name>$name</name> + <uri>$profile_page</uri> + <link rel="photo" type="image/jpeg" media:width="80" media:height="80" href="$thumb" /> + <link rel="avatar" type="image/jpeg" media:width="80" media:height="80" href="$thumb" /> + </author> + + <id>$item_id</id> + <title>$title</title> + <published>$published</published> + <content type="$type" >$content</content> + <link rel="mentioned" href="$accturi" /> + <as:actor> + <as:object-type>http://activitystrea.ms/schema/1.0/person</as:object-type> + <id>$profile_page</id> + <title></title> + <link rel="avatar" type="image/jpeg" media:width="175" media:height="175" href="$photo"/> + <link rel="avatar" type="image/jpeg" media:width="80" media:height="80" href="$thumb"/> + <poco:preferredUsername>$nick</poco:preferredUsername> + <poco:displayName>$name</poco:displayName> + </as:actor> + <as:verb>$verb</as:verb> + <as:object> + <as:object-type></as:object-type> + </as:object> + <as:target> + <as:object-type></as:object-type> + </as:target> + </entry> diff --git a/view/theme/default/style.css b/view/theme/default/style.css index 17e619dea..da10e9da9 100644 --- a/view/theme/default/style.css +++ b/view/theme/default/style.css @@ -1680,9 +1680,9 @@ a.mail-list-link:hover { float: left; width: 150px; } -#photo-edit-caption, #photo-edit-tags-textarea { +#photo-edit-caption, #photo-edit-newtag { float: left; - margin-bottom: 15px; + margin-bottom: 25px; } #photo-edit-caption-end, #photo-edit-tags-end { @@ -1692,6 +1692,9 @@ a.mail-list-link:hover { #photo-edit-delete-button { margin-left: 200px; } +#photo-edit-end { + margin-bottom: 35px; +} #photo-caption { font-size: 110%; font-weight: bold; |