--- path_redirect.admin.inc	2008-03-07 20:10:02.000000000 -0600
+++ path_redirect.admin.inc	2008-04-01 20:37:41.000000000 -0500
@@ -5,6 +5,8 @@
  * Render a list of redirects for the main admin page.
  */
 function path_redirect_admin($rid = FALSE) {
+  drupal_add_css(drupal_get_path('module', 'path_redirect') .'/path_redirect.css');
+
   $header = array(
     array('data' => t('From'), 'field' => 'path', 'sort' => 'asc'),
     array('data' => t('To'), 'field' => 'redirect'),
@@ -23,7 +25,7 @@ function path_redirect_admin($rid = FALS
     $fragment = $r->fragment ? "#$r->fragment" : '';
     $rows[] = array(
       $path,
-      check_url($redirect . $query . $fragment),
+      array('data' => '<div>'. check_url($redirect . $query . $fragment) .'</div>', 'class' => 'path-redirect-to'),
       $types[$r->type]['title'],
       array('data' => l(t('test'), preg_replace('/\?.*/', '', $r->path), array('query' => strstr($r->path, '?') ? preg_replace('/.*\?/', '', $r->path) : NULL))),
       array('data' => l(t('edit'), 'admin/build/path-redirect/edit/'. $r->rid, array('query' => $destination))),
