#108098 fix cursor being hidden in firefox, patch by quicksketch. note, the menu no longer stays on top as you scroll, however forms are usable once again. this feature will return in version 3 when it's rewritten to be 100% jQuery.

This commit is contained in:
Ted Serbinski 2007-01-10 05:40:31 +00:00
parent 5ca8a4fc6c
commit 1251927952
2 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ background:#eee;
border-bottom:1px solid #a3a3a3;
font:12px Arial, Helvetica, sans-serif;
left:0;
position:fixed;
position:static;
top:0;
width:100%;
}

View File

@ -5,7 +5,7 @@ $(document).ready(function() {
var basePath = Drupal.settings.menu_bar.basePath;
// insert extra <br /> so menu doesn't overlap theme
$('body').prepend('<ul id="menubar"></ul><br />');
$('body').prepend('<ul id="menubar" class="clear-block"></ul>');
// Drupal menu callback
$('#menubar').load(basePath + 'menu_bar/menu', function() {