diff options
author | Neil Drumm <drumm@3064.no-reply.drupal.org> | 2006-11-30 01:55:31 +0000 |
---|---|---|
committer | Neil Drumm <drumm@3064.no-reply.drupal.org> | 2006-11-30 01:55:31 +0000 |
commit | 0d99880f9629c846e125fbcc3670215b5856e0cc (patch) | |
tree | 1dfd2e90957ff8ca81d36ba28c6ae6131c657fe8 /modules/system | |
parent | 05a9e540b4543544fe5f12929a0c8a04b51a7404 (diff) | |
download | brdo-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/system')
-rw-r--r-- | modules/system/system.css | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/modules/system/system.css b/modules/system/system.css index 5a92c5a89..43794a4c8 100644 --- a/modules/system/system.css +++ b/modules/system/system.css @@ -156,6 +156,54 @@ dl.multiselect .form-item { } /* +** Menus +*/ +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; +} + +/* ** Tab navigation */ ul.primary { |