diff -Naur adminblock.orig/adminblock.module adminblock.rtklinux/adminblock.module
--- adminblock.orig/adminblock.module	2006-12-26 21:28:59.000000000 +0000
+++ adminblock.rtklinux/adminblock.module	2008-12-27 02:05:16.000000000 +0000
@@ -37,7 +37,7 @@
       $comment_count_display = $comment_count > $nlimit ? ' ('. $comment_count .')' : '';
       $items = array();
       while ($comment = db_fetch_object($result)) {
-        $items[] = check_plain($comment->subject) .' - '. format_date($comment->timestamp, 'medium') .'<br />['. l(t('node'), 'node/'. $comment->nid, array('title' => $comment->title), NULL, 'comment-'. $comment->cid) .'] ['. l(t('edit'), 'comment/edit/'. $comment->cid) .'] ['. l(t('delete'), 'comment/delete/'. $comment->cid) .']';
+        $items[] = check_plain($comment->subject) .' - '. format_date($comment->timestamp, 'medium') .'</li><li class="adminblock_node">'. l(t('node'), 'node/'. $comment->nid, array('title' => $comment->title), NULL, 'comment-'. $comment->cid) .'</li><li class="adminblock_comment_edit">'. l(t('edit'), 'comment/edit/'. $comment->cid) .'</li><li class="adminblock_comment_delete">'. l(t('delete'), 'comment/delete/'. $comment->cid);
       }
     }
 
@@ -51,7 +51,7 @@
       $node_count_display = $node_count > $nlimit ? ' ('. $node_count .')' : '';
       $items2 = array();
       while ($node = db_fetch_object($result2)) {
-        $items2[] = check_plain($node->title) .' - '. format_date($node->changed, 'medium') .'<br />['. l(t('By @user', array('@user' => $node->name)), 'user/'. $node->uid) .'] ['. l(t('edit'), 'node/'. $node->nid .'/edit') .'] ['. l(t('delete'), 'node/'. $node->nid .'/delete') .']';
+        $items2[] = check_plain($node->title) .' - '. format_date($node->changed, 'medium') .'</li><li class="adminblock_user">'. l(t('By @user', array('@user' => $node->name)), 'user/'. $node->uid) .'</li><li class="adminblock_node_edit">'. l(t('edit'), 'node/'. $node->nid .'/edit') .'</li><li class="adminblock_node_delete">'. l(t('delete'), 'node/'. $node->nid .'/delete');
       }
     }
 
@@ -65,7 +65,7 @@
       $trackback_count_display = $trackback_count > $nlimit ? ' ('. $trackback_count .')' : '';
       $items3 = array();
       while ($trackback = db_fetch_object($result3)) {
-        $items3[] = check_plain($trackback->subject) .' - '. format_date($trackback->created, 'medium') .'<br />['. l(t('edit'), 'admin/content/trackback/edit/'. $trackback->trid) .'] ['. l(t('delete'), 'admin/content/trackback/delete/'. $trackback->trid) .']';
+        $items3[] = check_plain($trackback->subject) .' - '. format_date($trackback->created, 'medium') .'</li><li class="adminblock_trackback_edit">'. l(t('edit'), 'admin/content/trackback/edit/'. $trackback->trid) .'</li><li class="adminblock_trackback_delete">'. l(t('delete'), 'admin/content/trackback/delete/'. $trackback->trid);
       }
     }
 
