more space around help icon

This commit is contained in:
Roland Gruber 2013-03-24 11:23:32 +00:00
parent f5acde465a
commit 40c91ee816
2 changed files with 5 additions and 1 deletions

View File

@ -653,7 +653,7 @@ function printHelpLink($entry, $number, $module='', $scope='') {
// replace special characters
$message = str_replace(array("'", '"', "\n"), array("\\'", '"', ''), $message);
$title = str_replace(array("'", '"', "\n"), array("\\'", '"', ''), $title);
echo "<a href=\"" . $helpPath . "help.php?module=$module&amp;HelpNumber=". $number . "&amp;scope=" . $scope . "\" ";
echo "<a class=\"margin2\" href=\"" . $helpPath . "help.php?module=$module&amp;HelpNumber=". $number . "&amp;scope=" . $scope . "\" ";
echo "target=\"help\" ";
echo "onmouseover=\"Tip('" . $message . "', TITLE, '" . $title . "')\" onmouseout=\"UnTip()\">";
echo "<img class=\"align-middle\" width=16 height=16 src=\"../$helpPath/graphics/help.png\" alt=\"" . _('Help') . "\" title=\"" . _('Help') . "\">";

View File

@ -111,6 +111,10 @@ input {
margin: 1px;
}
.margin2 {
margin: 2px;
}
.align-middle {
vertical-align: middle;
}