Index: typo3/sysext/reports/mod/index.php
===================================================================
--- typo3/sysext/reports/mod/index.php	(revision 6154)
+++ typo3/sysext/reports/mod/index.php	(working copy)
@@ -236,7 +236,8 @@
 						$icon = $GLOBALS['BACK_PATH'] . '../' . str_replace(PATH_site, '', $absIconPath);
 					}
 				}
-				$reportContent  = '<dt style="background-image: url(\'' . $icon . '\');"><a href="' . $link . '">' . $reportTitle . '</a></dt>';
+				$icon = '<img' . t3lib_iconworks::skinImg($GLOBALS['BACK_PATH'], $icon, 'width="16" height="16"') . ' title="' . $reportTitle . '" />';
+				$reportContent  = '<dt><a href="' . $link . '">' . $icon . $reportTitle . '</a></dt>';
 				$reportContent .= '<dd>' . $GLOBALS['LANG']->sL($report['description']) . '</dd>';
 
 				$reports[$reportTitle] = $reportContent;
Index: typo3/sysext/reports/mod/mod_styles.css
===================================================================
--- typo3/sysext/reports/mod/mod_styles.css	(revision 6154)
+++ typo3/sysext/reports/mod/mod_styles.css	(working copy)
@@ -15,10 +15,14 @@
 .report-list dt {
 	font-weight: bold;
 	font-size: 11px;
-	background-repeat: no-repeat;
 	padding: 0px 0px 2px 20px;
 }
 
+.report-list dt img {
+	vertical-align: middle;
+	margin-right: 5px;
+}
+
 .report-list dd {
 	margin: 2px 0px 15px 20px;
 }
