diff options
Diffstat (limited to 'view')
-rw-r--r-- | view/theme/duepuntozero/css/style.css | 3 | ||||
-rwxr-xr-x | view/theme/duepuntozero/tpl/comment_item.tpl | 4 | ||||
-rw-r--r-- | view/tpl/comment_item.tpl | 4 |
3 files changed, 11 insertions, 0 deletions
diff --git a/view/theme/duepuntozero/css/style.css b/view/theme/duepuntozero/css/style.css index 18f620110..bbb4cb54f 100644 --- a/view/theme/duepuntozero/css/style.css +++ b/view/theme/duepuntozero/css/style.css @@ -934,6 +934,9 @@ input#dfrn-url { #network-bmark-link { margin-top: 10px; } +.tread-wrapper .wall-item-comment-wrapper { + margin-left: 50px; +} .wall-item-content-wrapper { margin-top: 10px; diff --git a/view/theme/duepuntozero/tpl/comment_item.tpl b/view/theme/duepuntozero/tpl/comment_item.tpl index 63c05f335..f64ae753b 100755 --- a/view/theme/duepuntozero/tpl/comment_item.tpl +++ b/view/theme/duepuntozero/tpl/comment_item.tpl @@ -1,6 +1,10 @@ <div class="comment-wwedit-wrapper" id="comment-edit-wrapper-$id" style="display: block;"> + {{ if $threaded }} <span id="hide-commentbox-$id" class="hide-commentbox fakelink" onclick="showHideCommentBox($id);">$comment</span> <form class="comment-edit-form" style="display: none;" id="comment-edit-form-$id" action="item" method="post" onsubmit="post_comment($id); return false;"> + {{ else }} + <form class="comment-edit-form" style="display: block;" id="comment-edit-form-$id" action="item" method="post" onsubmit="post_comment($id); return false;"> + {{ endif }} <input type="hidden" name="type" value="$type" /> <input type="hidden" name="profile_uid" value="$profile_uid" /> <input type="hidden" name="parent" value="$parent" /> diff --git a/view/tpl/comment_item.tpl b/view/tpl/comment_item.tpl index b2be6f94e..98173aa30 100644 --- a/view/tpl/comment_item.tpl +++ b/view/tpl/comment_item.tpl @@ -1,6 +1,10 @@ <div class="comment-wwedit-wrapper" id="comment-edit-wrapper-$id" style="display: block;"> + {{ if $threaded }} <span id="hide-commentbox-$id" class="hide-commentbox fakelink" onclick="showHideCommentBox($id);">$comment</span> <form class="comment-edit-form" style="display: none;" id="comment-edit-form-$id" action="item" method="post" onsubmit="post_comment($id); return false;"> + {{ else }} + <form class="comment-edit-form" style="display: block;" id="comment-edit-form-$id" action="item" method="post" onsubmit="post_comment($id); return false;"> + {{ endif }} <input type="hidden" name="type" value="$type" /> <input type="hidden" name="profile_uid" value="$profile_uid" /> <input type="hidden" name="parent" value="$parent" /> |