2009-02-09 Evi Vanoost <vanooste@rcbi.rochester.edu>
* general/logon_ok.php: No tr in thead causes safari to spit an error * general/main_menu.php: Added jQuery animated menu rolling * include/styles/menu.css: Removed CSS-based menu rolling git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1437 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
2f9e337ad5
commit
503dc8a4d2
|
@ -1,3 +1,11 @@
|
|||
2009-02-09 Evi Vanoost <vanooste@rcbi.rochester.edu>
|
||||
|
||||
* general/logon_ok.php: No tr in thead causes safari to spit an error
|
||||
|
||||
* general/main_menu.php: Added jQuery animated menu rolling
|
||||
|
||||
* include/styles/menu.css: Removed CSS-based menu rolling
|
||||
|
||||
2009-02-09 Evi Vanoost <vanooste@rcbi.rochester.edu>
|
||||
|
||||
* general/header.php, general/footer.php: Made it comply with standards
|
||||
|
|
|
@ -89,7 +89,7 @@ print_table ($table);
|
|||
unset ($table);
|
||||
|
||||
echo '<table class="databox" cellpadding="4" cellspacing="4" width="100%">';
|
||||
echo '<thead><th colspan="2">'.__('Pandora FMS Overview').'</th></thead><tbody>';
|
||||
echo '<thead><tr><th colspan="2">'.__('Pandora FMS Overview').'</th></tr></thead><tbody>';
|
||||
|
||||
$cells = array ();
|
||||
$cells[0][0] = __('Total agents');
|
||||
|
|
|
@ -135,3 +135,14 @@ unset ($menu);
|
|||
|
||||
require ("links_menu.php");
|
||||
?>
|
||||
<script type="text/javascript" language="javascript">
|
||||
$(document).ready( function() {
|
||||
$("li.has_submenu").bind("mouseenter", function() {
|
||||
$(this).children("ul").slideDown ("slow");
|
||||
});
|
||||
|
||||
$("li.has_submenu.not_selected").click (function() {
|
||||
$(this).children("ul").slideToggle ("slow");
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
|
|
@ -67,9 +67,11 @@
|
|||
.menu li.has_submenu.selected > a, .menu li:hover.has_submenu > a {
|
||||
background: transparent url(images/toggle.png) no-repeat 115px 5px;
|
||||
}
|
||||
/*
|
||||
.menu li:hover.has_submenu ul.invisible {
|
||||
display:block;
|
||||
}
|
||||
*/
|
||||
.menu li.links {
|
||||
background: #E9F3D2 url(../../images/link.png) no-repeat 4px 8px;
|
||||
border-width: 1px 0 0 1px;
|
||||
|
|
Loading…
Reference in New Issue