Comment indenting not correct after level 2
Groups:
Terms:
Indenting is not applied correctly when posting a comment on a comment on the article. It is placed at the same level as a comment on the artcle. Here's an example. My comment at the bottom is a reply to Icarus' comment. The expected behavior is to place it below and a bit to the right of his comment, and not on the same level of the first comment.


Comments
This appears to be fixed now,
This appears to be fixed now, up to level 4 (in the same thread as mentioned above).
Technically it's correct, but
Technically it's correct, but the theme can make it very deceiving, and we'll looking for a solution.
The problem is, the right portion of the comment, which includes user name, picture, and time, will be a variable length (depending on the user name and the string which contains the time ago). This could cause a higher-level comment to seem more indented than a reply.
Make sense?
did you guys find a solution?
did you guys find a solution? i'm noticing the same
btw, i was wondering why
btw, i was wondering why things looked good after some time had passed, and this post helped me figure that out. the indent looks fine, once you get all of the text in the "XX weeks X days ago" length.
it seems like a little creative css providing a fixed width, or min-width, might do the trick. here's something that might get you started...
.comment .comment-info .submitted span { display: block; width: auto; min-width:100px; }also experimenting by adding some granularity in the template's acquia_commons_preprocess_comment() formatting might help...
$ago = t('!interval ago', array('!interval' => format_interval(time() - $vars['comment']->timestamp, 1)));