summaryrefslogtreecommitdiff
path: root/modules/help
diff options
context:
space:
mode:
Diffstat (limited to 'modules/help')
-rw-r--r--modules/help/help.css10
-rw-r--r--modules/help/help.module5
2 files changed, 15 insertions, 0 deletions
diff --git a/modules/help/help.css b/modules/help/help.css
new file mode 100644
index 000000000..3536167f0
--- /dev/null
+++ b/modules/help/help.css
@@ -0,0 +1,10 @@
+/* $Id$ */
+
+.help-items {
+ float: left;
+ width: 22%;
+ padding-right: 3%;
+}
+.help-items-last {
+ padding-right: 0;
+}
diff --git a/modules/help/help.module b/modules/help/help.module
index e8ef6ce39..98dc1635f 100644
--- a/modules/help/help.module
+++ b/modules/help/help.module
@@ -28,6 +28,11 @@ function help_menu($may_cache) {
'access' => $admin_access);
}
}
+ else {
+ // Add the CSS for this module
+ // We put this in !$may_cache so it's only added once per request
+ drupal_add_css(drupal_get_path('module', 'help') .'/help.css');
+ }
return $items;
}