diff options
author | cash <cash.costello@gmail.com> | 2011-10-03 22:13:38 -0400 |
---|---|---|
committer | cash <cash.costello@gmail.com> | 2011-10-03 22:13:38 -0400 |
commit | 995f809c952cd8af82b1d2ca6627cad5e34b6037 (patch) | |
tree | 5728b4391e0b08d0a9014a0588e09d99c5893826 /views | |
parent | c1ae08ad43ef1eafbd92fc9526c2fdecbe5c5977 (diff) | |
download | elgg-995f809c952cd8af82b1d2ca6627cad5e34b6037.tar.gz elgg-995f809c952cd8af82b1d2ca6627cad5e34b6037.tar.bz2 |
Fixes #3866 added CSS for entity menu in admin theme
Diffstat (limited to 'views')
-rw-r--r-- | views/default/css/admin.php | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/views/default/css/admin.php b/views/default/css/admin.php index c032ee3fc..7efdf4249 100644 --- a/views/default/css/admin.php +++ b/views/default/css/admin.php @@ -762,6 +762,32 @@ a.elgg-button { } /* *************************************** + ENTITY MENU +*************************************** */ +<?php // height depends on line height/font size ?> +.elgg-menu-entity, elgg-menu-annotation { + float: right; + margin-left: 15px; + font-size: 90%; + color: #666; + line-height: 16px; + height: 16px; +} +.elgg-menu-entity > li, .elgg-menu-annotation > li { + margin-left: 15px; +} +.elgg-menu-entity > li > a, .elgg-menu-annotation > li > a { + color: #aaa; +} +<?php // need to override .elgg-menu-hz ?> +.elgg-menu-entity > li > a, .elgg-menu-annotation > li > a { + display: block; +} +.elgg-menu-entity > li > span, .elgg-menu-annotation > li > span { + vertical-align: baseline; +} + +/* *************************************** MORE MENUS *************************************** */ /* Horizontal menus w/ separator support */ |