Index: misc/drupal.css
===================================================================
RCS file: /cvs/drupal/drupal/misc/drupal.css,v
retrieving revision 1.50
diff -u -r1.50 drupal.css
--- misc/drupal.css	11 Jan 2004 15:05:20 -0000	1.50
+++ misc/drupal.css	11 Jan 2004 19:50:28 -0000
@@ -108,6 +108,9 @@
   margin: 0;
   font-size: 0.8em;
 }
+.comment-indent {
+  margin-left: 25px;
+}
 .container-inline div {
   display: inline;
 }
Index: modules/comment.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/comment.module,v
retrieving revision 1.205
diff -u -r1.205 comment.module
--- modules/comment.module	3 Jan 2004 12:32:21 -0000	1.205
+++ modules/comment.module	11 Jan 2004 19:50:36 -0000
@@ -1417,24 +1417,20 @@
 }
 
 function theme_comment_thread_min($comment, $threshold, $pid = 0) {
+  $output = "";
   if (comment_visible($comment, $threshold)) {
-    $output  = "<div style=\"margin-left:". ($comment->depth * 25) ."px;\">\n";
-    $output .= theme("comment_view", $comment, "", 0);
-    $output .= "</div>\n";
+    $output = theme("comment_view", $comment, "", 0);
+    for ($i = 0; $i < $comment->depth; $i++) {
+      $output = "<div class=\"comment-indent\">\n".$output."</div>\n";
+    }
   }
   return $output;
 }
 
 function theme_comment_thread_max($comment, $threshold, $level = 0) {
-  $output = "";
-  if ($comment->depth) {
-    $output .= "<div style=\"margin-left:". ($comment->depth * 25) ."px;\">\n";
-  }
-
-  $output .= theme("comment_view", $comment, comment_links($comment, 0), comment_visible($comment, $threshold));
-
-  if ($comment->depth) {
-    $output .= "</div>\n";
+  $output = theme("comment_view", $comment, comment_links($comment, 0), comment_visible($comment, $threshold));
+  for ($i = 0; $i < $comment->depth; $i++) {
+    $output = "<div class=\"comment-indent\">\n".$output."</div>\n";
   }
   return $output;
 }
