Index: modules/comment/comment-rtl.css
===================================================================
RCS file: /cvs/drupal/drupal/modules/comment/comment-rtl.css,v
retrieving revision 1.2
diff -u -p -r1.2 comment-rtl.css
--- modules/comment/comment-rtl.css	27 Nov 2007 12:09:25 -0000	1.2
+++ modules/comment/comment-rtl.css	12 Jul 2008 17:53:59 -0000
@@ -4,3 +4,7 @@
   margin-left: 0;
   margin-right: 25px;
 }
+
+form#comment-form {
+  float: right;
+}
\ No newline at end of file
Index: modules/comment/comment.css
===================================================================
RCS file: /cvs/drupal/drupal/modules/comment/comment.css,v
retrieving revision 1.4
diff -u -p -r1.4 comment.css
--- modules/comment/comment.css	24 Jul 2007 21:33:53 -0000	1.4
+++ modules/comment/comment.css	12 Jul 2008 17:56:29 -0000
@@ -9,3 +9,7 @@
 .preview .comment {
   background-color: #ffffea;
 }
+form#comment-form {
+  width: auto;
+  float: left; /* LTR */
+}
\ No newline at end of file
Index: modules/comment/comment.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/comment/comment.module,v
retrieving revision 1.642
diff -u -p -r1.642 comment.module
--- modules/comment/comment.module	3 Jul 2008 17:57:03 -0000	1.642
+++ modules/comment/comment.module	12 Jul 2008 02:14:40 -0000
@@ -1167,6 +1167,7 @@ function comment_form(&$form_state, $edi
   if (!$user->uid && variable_get('comment_anonymous_' . $node->type, COMMENT_ANONYMOUS_MAYNOT_CONTACT) != COMMENT_ANONYMOUS_MAYNOT_CONTACT) {
     drupal_add_js(drupal_get_path('module', 'comment') . '/comment.js');
   }
+  drupal_add_css(drupal_get_path('module', 'comment') . '/comment.css');
   $edit += array('name' => '', 'mail' => '', 'homepage' => '');
 
   if ($user->uid) {
@@ -1329,6 +1330,7 @@ function comment_form(&$form_state, $edi
       '#type' => 'textfield',
       '#title' => t('Subject'),
       '#maxlength' => 64,
+      '#size' => 30,
       '#default_value' => !empty($edit['subject']) ? $edit['subject'] : '',
     );
   }
@@ -1339,11 +1341,10 @@ function comment_form(&$form_state, $edi
   else {
     $default = '';
   }
-
   $form['comment_filter']['comment'] = array(
     '#type' => 'textarea',
     '#title' => t('Comment'),
-    '#rows' => 15,
+    '#rows' => 6,
     '#default_value' => $default,
     '#required' => TRUE,
   );
