diff options
author | Mike Macgirvin <mike@macgirvin.com> | 2010-07-16 23:14:37 -0700 |
---|---|---|
committer | Mike Macgirvin <mike@macgirvin.com> | 2010-07-16 23:14:37 -0700 |
commit | f937de932d87737d14278003f80b5bc5025acdc6 (patch) | |
tree | 340429a6f2b52c6729ebe7e3cd30771042db9aba /view | |
parent | 5e4df4b3f7782f8a82664d24b86d46a14b3d178b (diff) | |
download | volse-hubzilla-f937de932d87737d14278003f80b5bc5025acdc6.tar.gz volse-hubzilla-f937de932d87737d14278003f80b5bc5025acdc6.tar.bz2 volse-hubzilla-f937de932d87737d14278003f80b5bc5025acdc6.zip |
fixing stuff that broke with the last big code push
Diffstat (limited to 'view')
-rw-r--r-- | view/comment_item.tpl | 4 | ||||
-rw-r--r-- | view/jot.tpl | 3 | ||||
-rw-r--r-- | view/style.css | 10 | ||||
-rw-r--r-- | view/wallwall_item.tpl | 2 |
4 files changed, 15 insertions, 4 deletions
diff --git a/view/comment_item.tpl b/view/comment_item.tpl index d6dcd8e4a..530244e8e 100644 --- a/view/comment_item.tpl +++ b/view/comment_item.tpl @@ -1,8 +1,8 @@ -<div class="comment-edit-wrapper" id="comment-edit-wrapper-$id" style="display: block;"> +<div class="comment-$wwedit-wrapper" id="comment-edit-wrapper-$id" style="display: block;"> <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="type" value="wall-comment" /> <input type="hidden" name="profile_uid" value="$profile_uid" /> <input type="hidden" name="parent" value="$parent" /> diff --git a/view/jot.tpl b/view/jot.tpl index f7cb49ec4..dca307c39 100644 --- a/view/jot.tpl +++ b/view/jot.tpl @@ -4,8 +4,9 @@ What's on your mind? </p> <form id="profile-jot-form" action="item" method="post" > -<input type="hidden" name="type" value="jot" /> +<input type="hidden" name="type" value="wall" /> <input type="hidden" name="profile_uid" value="$profile_uid" /> +<input type="hidden" name="return" value="$return_path" /> <textarea rows="5" cols="64" class="profile-jot-text" id="profile-jot-text" name="body" ></textarea> diff --git a/view/style.css b/view/style.css index 574e99e83..a8f1abb13 100644 --- a/view/style.css +++ b/view/style.css @@ -435,6 +435,11 @@ input#dfrn-url { float: left; } +.wall-item-ago { + color: #888888; + font-size: 0.8em; +} + .wall-item-wrapper-end { clear: both; } @@ -452,6 +457,11 @@ input#dfrn-url { margin-left: 100px; } +.comment-wwedit-wrapper { + margin-top: 15px; + margin-left: 250px; +} + #profile-jot-submit-wrapper { margin-top: 15px; diff --git a/view/wallwall_item.tpl b/view/wallwall_item.tpl index ac3a4e34f..94d0da4fc 100644 --- a/view/wallwall_item.tpl +++ b/view/wallwall_item.tpl @@ -9,7 +9,7 @@ <img src="$thumb" class="wall-item-photo" id="wall-item-photo-$id" height="80" width="80" alt="$name" /></a> </div> <div class="wall-item-wrapper" id="wall-item-wrapper-$id" > -<a href="$profile_url" title="View $name's profile" class="wall-item-name-link"><span class="wall-item-name" id="wall-item-name-$id" >$name</span></a> to <a href="$owner_url" title="View $owner_name's profile" class="wall-item-name-link"><span class="wall-item-name" id="wall-item-ownername-$id">$owner_name</span</a> via Wall-To-Wall:<br /> +<a href="$profile_url" title="View $name's profile" class="wall-item-name-link"><span class="wall-item-name" id="wall-item-name-$id" >$name</span></a> to <a href="$owner_url" title="View $owner_name's profile" class="wall-item-name-link"><span class="wall-item-name" id="wall-item-ownername-$id">$owner_name</span></a> via Wall-To-Wall:<br /> <span class="wall-item-body" id="wall-item-body-$id" >$body</span> <div class="wall-item-ago" id="wall-item-ago-$id">$ago</div> |