summaryrefslogtreecommitdiff
path: root/modules/menu
diff options
context:
space:
mode:
authorNeil Drumm <drumm@3064.no-reply.drupal.org>2006-11-30 01:55:31 +0000
committerNeil Drumm <drumm@3064.no-reply.drupal.org>2006-11-30 01:55:31 +0000
commit0d99880f9629c846e125fbcc3670215b5856e0cc (patch)
tree1dfd2e90957ff8ca81d36ba28c6ae6131c657fe8 /modules/menu
parent05a9e540b4543544fe5f12929a0c8a04b51a7404 (diff)
downloadbrdo-0d99880f9629c846e125fbcc3670215b5856e0cc.tar.gz
brdo-0d99880f9629c846e125fbcc3670215b5856e0cc.tar.bz2
#99763 by kkaefer. The menus are a system-level thing, and their css should be too.
Diffstat (limited to 'modules/menu')
-rw-r--r--modules/menu/menu.css46
-rw-r--r--modules/menu/menu.module5
2 files changed, 0 insertions, 51 deletions
diff --git a/modules/menu/menu.css b/modules/menu/menu.css
deleted file mode 100644
index d815cfdb2..000000000
--- a/modules/menu/menu.css
+++ /dev/null
@@ -1,46 +0,0 @@
-/* $Id$ */
-
-ul.menu {
- list-style: none;
- border: none;
- text-align:left;
-}
-ul.menu li {
- margin: 0 0 0 0.5em;
-}
-li.expanded {
- list-style-type: circle;
- list-style-image: url(../../misc/menu-expanded.png);
- padding: 0.2em 0.5em 0 0;
- margin: 0;
-}
-li.collapsed {
- list-style-type: disc;
- list-style-image: url(../../misc/menu-collapsed.png);
- padding: 0.2em 0.5em 0 0;
- margin: 0;
-}
-li.leaf {
- list-style-type: square;
- list-style-image: url(../../misc/menu-leaf.png);
- padding: 0.2em 0.5em 0 0;
- margin: 0;
-}
-li a.active {
- color: #000;
-}
-td.menu-disabled {
- background: #ccc;
-}
-ul.links {
- margin: 0;
- padding: 0;
-}
-ul.links.inline {
- display: inline;
-}
-ul.links li {
- display: inline;
- list-style-type: none;
- padding: 0 0.5em;
-}
diff --git a/modules/menu/menu.module b/modules/menu/menu.module
index 46ad75ca1..f4e1ac8c3 100644
--- a/modules/menu/menu.module
+++ b/modules/menu/menu.module
@@ -105,11 +105,6 @@ function menu_menu($may_cache) {
'weight' => 5,
);
}
- 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', 'menu') .'/menu.css');
- }
return $items;
}