Index: includes/menu.inc
===================================================================
RCS file: /cvs/drupal/drupal/includes/menu.inc,v
retrieving revision 1.328
diff -u -r1.328 menu.inc
--- includes/menu.inc 10 Jun 2009 21:52:36 -0000 1.328
+++ includes/menu.inc 28 Jun 2009 21:13:41 -0000
@@ -1333,7 +1333,7 @@
$function = $module . '_help';
// Lookup help for this path.
if ($help = $function($router_path, $arg)) {
- $output .= $help . "\n";
+ $output .= '
' . $help . "
\n";
}
// Add "more help" link on admin pages if the module provides a
// standalone help page.
@@ -1341,7 +1341,7 @@
$output .= theme("more_help_link", url('admin/help/' . $arg[2]));
}
}
- return $output;
+ return '' . $output . '
';
}
/**
Index: modules/system/system.css
===================================================================
RCS file: /cvs/drupal/drupal/modules/system/system.css,v
retrieving revision 1.54
diff -u -r1.54 system.css
--- modules/system/system.css 11 Apr 2009 22:19:45 -0000 1.54
+++ modules/system/system.css 28 Jun 2009 21:13:41 -0000
@@ -153,7 +153,16 @@
.marker, .form-required {
color: #f00;
}
-.more-help-link {
+.help {
+ width: 100%;
+ overflow: hidden;
+}
+.help-text {
+ margin-right: 100px;
+}
+ .more-help-link {
+ padding: 0.6em 0 1.2em;
+ margin-top: -3.5em;
text-align: right; /* LTR */
}
.more-help-link a {