diff options
author | Mike Macgirvin <mike@macgirvin.com> | 2010-07-11 23:10:52 -0700 |
---|---|---|
committer | Mike Macgirvin <mike@macgirvin.com> | 2010-07-11 23:10:52 -0700 |
commit | 4e40156607aede8d1ed9bd63b18bc6c83ea572d7 (patch) | |
tree | 25e2cd83b9a2394de49cfe673fb164e149cc65c2 /view | |
parent | 8e22178b8a135ccc315de1c9f305e81d97556709 (diff) | |
download | volse-hubzilla-4e40156607aede8d1ed9bd63b18bc6c83ea572d7.tar.gz volse-hubzilla-4e40156607aede8d1ed9bd63b18bc6c83ea572d7.tar.bz2 volse-hubzilla-4e40156607aede8d1ed9bd63b18bc6c83ea572d7.zip |
sort out some permissions, comments, fetch
Diffstat (limited to 'view')
-rw-r--r-- | view/comment_item.tpl | 2 | ||||
-rw-r--r-- | view/style.css | 4 | ||||
-rw-r--r-- | view/wall_item.tpl | 4 |
3 files changed, 7 insertions, 3 deletions
diff --git a/view/comment_item.tpl b/view/comment_item.tpl index ed788ad08..3ca190ba5 100644 --- a/view/comment_item.tpl +++ b/view/comment_item.tpl @@ -4,7 +4,7 @@ <form class="comment-edit-form" id="comment-edit-form-$id" action="item" method="post" > <input type="hidden" name="type" value="jot" /> <input type="hidden" name="profile_uid" value="$profile_uid" /> - <input type="hidden" name="parent" value="$id" /> + <input type="hidden" name="parent" value="$parent" /> <textarea rows="3" cols="40" id="comment-edit-text-$id" name="body" ></textarea> diff --git a/view/style.css b/view/style.css index ccf58c72f..a2089aab2 100644 --- a/view/style.css +++ b/view/style.css @@ -416,6 +416,10 @@ input#dfrn-url { clear: both; } +.wall-item-comment-outside-wrapper { + margin-left: 50px; +} + .wall-item-photo-wrapper { margin-top: 20px; width: 100px; diff --git a/view/wall_item.tpl b/view/wall_item.tpl index ece149c1f..e483d74db 100644 --- a/view/wall_item.tpl +++ b/view/wall_item.tpl @@ -1,4 +1,4 @@ -<div class="wall-item-outside-wrapper" id="wall-item-outside-wrapper-$id" > +<div class="wall-item-$indentoutside-wrapper" id="wall-item-outside-wrapper-$id" > <div class="wall-item-photo-wrapper" id="wall-item-photo-wrapper-$id" > <a href="$profile_url" title="View $name's profile" class="wall-item-photo-link" id="wall-item-photo-link-$id"> <img src="$thumb" class="wall-item-photo" id="wall-item-photo-$id" height="80" width="80" alt="$name" /></a> @@ -13,5 +13,5 @@ $comment </div> <div class="wall-item-wrapper-end"></div> </div> -<div class="wall-item-outside-wrapper-end" ></div> +<div class="wall-item-$indentoutside-wrapper-end" ></div> |