css change to allow live inserts
This commit is contained in:
parent
cb0d45385c
commit
1db8ab907b
|
@ -153,7 +153,7 @@ function network_content(&$a) {
|
|||
'$thumb' => $profile_avatar,
|
||||
'$body' => bbcode($item['body']),
|
||||
'$ago' => relative_date($item['created']),
|
||||
'$indent' => (($item['parent'] != $item['item_id']) ? 'comment-' : ''),
|
||||
'$indent' => (($item['parent'] != $item['item_id']) ? ' comment' : ''),
|
||||
'$owner_url' => $owner_url,
|
||||
'$owner_photo' => $owner_photo,
|
||||
'$owner_name' => $owner_name,
|
||||
|
|
|
@ -241,7 +241,7 @@ function profile_content(&$a) {
|
|||
'$thumb' => $profile_avatar,
|
||||
'$body' => bbcode($item['body']),
|
||||
'$ago' => relative_date($item['created']),
|
||||
'$indent' => (($item['parent'] != $item['item_id']) ? 'comment-' : ''),
|
||||
'$indent' => (($item['parent'] != $item['item_id']) ? ' comment' : ''),
|
||||
'$comment' => $comment
|
||||
));
|
||||
}
|
||||
|
|
|
@ -458,7 +458,7 @@ input#dfrn-url {
|
|||
clear: both;
|
||||
}
|
||||
|
||||
.wall-item-comment-outside-wrapper {
|
||||
.wall-item-outside-wrapper.comment {
|
||||
margin-left: 50px;
|
||||
}
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<div class="wall-item-$indentoutside-wrapper" id="wall-item-outside-wrapper-$id" >
|
||||
<div class="wall-item-outside-wrapper$indent" 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>
|
||||
|
|
Loading…
Reference in a new issue