diff options
Diffstat (limited to 'view/theme')
-rw-r--r-- | view/theme/darkzero/css/style.css | 3 | ||||
-rw-r--r-- | view/theme/duepuntozero/css/style.css | 8 | ||||
-rwxr-xr-x | view/theme/duepuntozero/tpl/comment_item.tpl | 3 | ||||
-rw-r--r-- | view/theme/quattro/dark/style.css | 3 | ||||
-rw-r--r-- | view/theme/quattro/green/style.css | 3 | ||||
-rw-r--r-- | view/theme/quattro/quattro.less | 2 | ||||
-rw-r--r-- | view/theme/quattro/wall_item_tag.tpl | 4 |
7 files changed, 20 insertions, 6 deletions
diff --git a/view/theme/darkzero/css/style.css b/view/theme/darkzero/css/style.css index e01e14252..292c3dc4a 100644 --- a/view/theme/darkzero/css/style.css +++ b/view/theme/darkzero/css/style.css @@ -28,7 +28,8 @@ background: #444; } .wall-item-tools { background-color: #444444; background-image: none;} -.comment-wwedit-wrapper{ background-color: #333333; } +.comment-wwedit-wrapper{ background-color: #444444; } +.toplevel_item > .wall-item-comment-wrapper > .comment-wwedit-wrapper{ background-color: #333333; } .comment-edit-preview{ color: #000000; } .wall-item-content-wrapper.comment { background-color: #444444; border: 0px;} .photo-top-album-name{ background-color: #333333; } diff --git a/view/theme/duepuntozero/css/style.css b/view/theme/duepuntozero/css/style.css index 544820b68..beeaccb41 100644 --- a/view/theme/duepuntozero/css/style.css +++ b/view/theme/duepuntozero/css/style.css @@ -934,8 +934,12 @@ input#dfrn-url { } -.wall-item-content-wrapper.comment { +.tread-wrapper .tread-wrapper { margin-left: 50px; +} + +.wall-item-content-wrapper.comment { +# margin-left: 50px; background: #EEEEEE; } @@ -1175,9 +1179,7 @@ input#dfrn-url { } .comment-wwedit-wrapper { - margin-top: 15px; background: #f3f3f3; - margin-left: 50px; } .comment-edit-photo { diff --git a/view/theme/duepuntozero/tpl/comment_item.tpl b/view/theme/duepuntozero/tpl/comment_item.tpl index ea24d95cc..63c05f335 100755 --- a/view/theme/duepuntozero/tpl/comment_item.tpl +++ b/view/theme/duepuntozero/tpl/comment_item.tpl @@ -1,5 +1,6 @@ <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" onsubmit="post_comment($id); return false;"> + <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;"> <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/theme/quattro/dark/style.css b/view/theme/quattro/dark/style.css index 38dd3dcea..d397a9305 100644 --- a/view/theme/quattro/dark/style.css +++ b/view/theme/quattro/dark/style.css @@ -1065,6 +1065,9 @@ section { color: #2d2d2d; border: 1px solid #2d2d2d; } +.threaded .wall-item-comment-wrapper { + margin-left: 0px; +} .comment-edit-preview { width: 710px; border: 1px solid #2d2d2d; diff --git a/view/theme/quattro/green/style.css b/view/theme/quattro/green/style.css index a7d1f10b8..fdab77eb7 100644 --- a/view/theme/quattro/green/style.css +++ b/view/theme/quattro/green/style.css @@ -1065,6 +1065,9 @@ section { color: #2d2d2d; border: 1px solid #2d2d2d; } +.threaded .wall-item-comment-wrapper { + margin-left: 0px; +} .comment-edit-preview { width: 710px; border: 1px solid #2d2d2d; diff --git a/view/theme/quattro/quattro.less b/view/theme/quattro/quattro.less index 1bd0fae0a..a3ab8107b 100644 --- a/view/theme/quattro/quattro.less +++ b/view/theme/quattro/quattro.less @@ -534,6 +534,8 @@ section { } } +.threaded .wall-item-comment-wrapper { margin-left: 0px; } + .comment-edit-preview { width: 710px; border: 1px solid @Grey5; diff --git a/view/theme/quattro/wall_item_tag.tpl b/view/theme/quattro/wall_item_tag.tpl index 926fc929d..205fcfebc 100644 --- a/view/theme/quattro/wall_item_tag.tpl +++ b/view/theme/quattro/wall_item_tag.tpl @@ -13,11 +13,13 @@ <div class="wall-item-location">$item.location</div> </div> <div class="wall-item-content"> - $item.body + $item.ago $item.body </div> </div> </div> +{{ if $item.flatten }} <div class="wall-item-comment-wrapper" > $item.comment </div> +{{ endif }} |