aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike Macgirvin <mike@macgirvin.com>2010-07-24 05:52:29 -0700
committerMike Macgirvin <mike@macgirvin.com>2010-07-24 05:52:29 -0700
commit1db8ab907bb191b215f74be456861f1ca59ded48 (patch)
treeeb257e911250ec980f8dfa03e512271f87bfc936
parentcb0d45385ce23426fb546ba5790cae3b22b31c0c (diff)
downloadvolse-hubzilla-1db8ab907bb191b215f74be456861f1ca59ded48.tar.gz
volse-hubzilla-1db8ab907bb191b215f74be456861f1ca59ded48.tar.bz2
volse-hubzilla-1db8ab907bb191b215f74be456861f1ca59ded48.zip
css change to allow live inserts
-rw-r--r--mod/network.php2
-rw-r--r--mod/profile.php2
-rw-r--r--view/style.css2
-rw-r--r--view/wall_item.tpl2
4 files changed, 4 insertions, 4 deletions
diff --git a/mod/network.php b/mod/network.php
index 845a6bb77..0e8c8746f 100644
--- a/mod/network.php
+++ b/mod/network.php
@@ -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,
diff --git a/mod/profile.php b/mod/profile.php
index bb7357e5b..6b425bcd1 100644
--- a/mod/profile.php
+++ b/mod/profile.php
@@ -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
));
}
diff --git a/view/style.css b/view/style.css
index eb049da85..c6a9a82a6 100644
--- a/view/style.css
+++ b/view/style.css
@@ -458,7 +458,7 @@ input#dfrn-url {
clear: both;
}
-.wall-item-comment-outside-wrapper {
+.wall-item-outside-wrapper.comment {
margin-left: 50px;
}
diff --git a/view/wall_item.tpl b/view/wall_item.tpl
index 56e182761..726d1b320 100644
--- a/view/wall_item.tpl
+++ b/view/wall_item.tpl
@@ -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>