diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-01-01 19:45:25 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-01-01 19:45:25 +0000 |
commit | 0fc7a5edbc518abd92c4fc8c34b31ca05836132f (patch) | |
tree | 29c0bfcc89e51a4c46eebebf5f4c8cb44465fc4c /views/default/css/elements/navigation.php | |
parent | 47e81498d87703035a9d3a78215e80d7f3e02448 (diff) | |
download | elgg-0fc7a5edbc518abd92c4fc8c34b31ca05836132f.tar.gz elgg-0fc7a5edbc518abd92c4fc8c34b31ca05836132f.tar.bz2 |
Refs #2317 dividing css element views into skin views and base views. The expectation is that the base views would not be overridden in a theme so the admin css can depend on them.
git-svn-id: http://code.elgg.org/elgg/trunk@7807 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default/css/elements/navigation.php')
-rw-r--r-- | views/default/css/elements/navigation.php | 30 |
1 files changed, 29 insertions, 1 deletions
diff --git a/views/default/css/elements/navigation.php b/views/default/css/elements/navigation.php index e4524b7f7..52e8bd1d4 100644 --- a/views/default/css/elements/navigation.php +++ b/views/default/css/elements/navigation.php @@ -279,14 +279,42 @@ color: white; background-color: red; } +.avatar_menu_button { + width:15px; + height:15px; + position:absolute; + cursor:pointer; + display:none; + right:0; + bottom:0; +} +.avatar_menu_arrow { + background: url(<?php echo elgg_get_site_url(); ?>_graphics/elgg_sprites.png) no-repeat -150px top; + width:15px; + height:15px; +} +.avatar_menu_arrow_on { + background: url(<?php echo elgg_get_site_url(); ?>_graphics/elgg_sprites.png) no-repeat -150px -16px; + width:15px; + height:15px; +} +.avatar_menu_arrow_hover { + background: url(<?php echo elgg_get_site_url(); ?>_graphics/elgg_sprites.png) no-repeat -150px -32px; + width:15px; + height:15px; +} + /* *************************************** - MISC NAVIGATION + OWNER BLOCK *************************************** */ .elgg-owner-block-menu li { float: left; width: 50%; font-size: 90%; } +/* *************************************** + FOOTER +*************************************** */ .elgg-footer-menu li { float: left; } |