Bug #21281 ยป 12246.diff
typo3/sysext/reports/mod/index.php (working copy) | ||
---|---|---|
$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;
|
typo3/sysext/reports/mod/mod_styles.css (working copy) | ||
---|---|---|
.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;
|
||
}
|