diff options
author | pete <pete@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-07-28 15:32:00 +0000 |
---|---|---|
committer | pete <pete@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-07-28 15:32:00 +0000 |
commit | 9b24c14341da149952e8ab0e5ba147579c62b5cf (patch) | |
tree | f317d95cbbdeaab16f01274eddc71fca3ce58c21 | |
parent | b3d3b433d981be6a061326ff9e5ed9b1add484ce (diff) | |
download | elgg-9b24c14341da149952e8ab0e5ba147579c62b5cf.tar.gz elgg-9b24c14341da149952e8ab0e5ba147579c62b5cf.tar.bz2 |
fixes to toolbar and owner box ie 6 issues
git-svn-id: https://code.elgg.org/elgg/trunk@1560 36083f99-b078-4883-b0ff-0f9b5a30f544
-rw-r--r-- | views/default/css.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/views/default/css.php b/views/default/css.php index 042d75cdc..dc3e5e64a 100644 --- a/views/default/css.php +++ b/views/default/css.php @@ -1520,6 +1520,10 @@ table.search_gallery { background: #4690d6 url(<?php echo $vars['url']; ?>_graphics/tools_over.png) repeat-x top left; } +/* IE 6 - remove transparent png in menu */ +* html #owner_block ul li a:hover { + background: #4690d6; +} @@ -1828,6 +1832,10 @@ div.expandall p { color:white; background: #4690d6 url(<?php echo $vars['url']; ?>_graphics/tools_over.png) repeat-x top left; } +/* IE 6 - remove transparent png in menu */ +* html #tools_menu ul a:hover { + background: #4690d6; +} #tools_menu li ul a { width:120px; |