Index: stringoverrides.admin.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/stringoverrides/Attic/stringoverrides.admin.inc,v
retrieving revision 1.1.2.2.2.2
diff -u -p -r1.1.2.2.2.2 stringoverrides.admin.inc
--- stringoverrides.admin.inc	2 Feb 2008 05:39:51 -0000	1.1.2.2.2.2
+++ stringoverrides.admin.inc	27 Feb 2008 13:00:18 -0000
@@ -67,16 +67,18 @@ function stringoverrides_textbox_combo($
     '#parents' => array('string', $delta, 'enabled'),
   );
   $form['original'] = array(
-    '#type' => 'textfield',
+    '#type' => 'textarea',
     '#default_value' => $original,
-    '#size' => 30,
+    '#rows' => 1,
     '#parents' => array('string', $delta, 'original'),
+    '#resizable' => FALSE,
   );
   $form['replacement'] = array(
-    '#type' => 'textfield',
+    '#type' => 'textarea',
     '#default_value' => $replacement,
-    '#size' => 30,
+    '#rows' => 1,
     '#parents' => array('string', $delta, 'replacement'),
+    '#resizable' => FALSE,
   );
   return $form;
 } // function stringoverrides_textbox_combo()
@@ -85,6 +87,8 @@ function stringoverrides_textbox_combo($
  * Theme the enabled box and the two text box strings
  */
 function theme_stringoverrides_strings($form) {
+  drupal_add_css(drupal_get_path('module', 'stringoverrides') .'/stringoverrides.css', 'module', NULL, NULL, FALSE);
+  
   $headers = array(
     theme('table_select_header_cell'),
     t('Original'),
