Doh, simplemenu broke the cursor in textfields and textareas again. Fix: change position 'fixed' to 'absolute', which changes the behavior of the menu but doesn't break textareas. The absolute positioning is also much friendlier for the Advanced settings which allow placement of the menu anywhere on the page.
Index: simplemenu.css
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/simplemenu/simplemenu.css,v
retrieving revision 1.9
diff -u -F^f -r1.9 simplemenu.css
--- simplemenu.css 30 Jan 2007 06:02:09 -0000 1.9
+++ simplemenu.css 1 Feb 2007 00:10:50 -0000
@@ -14,7 +14,7 @@
border-bottom:1px solid #999;
font:11px Verdana, Helvetica, sans-serif;
left:0;
-position:fixed;
+position:absolute;
top:0;
width:100%;
height:21px;
Comments
Comment #1
ewhipple commentedThe fixed position is very useful, but unfortunately not enough to compensate for the missing text cursor. Is there any hope of resolving the conflict?
Comment #2
m3avrck commentedFirefox 3 :-)
Seems to be working in that version ;-)
Yes this should be able to be fixed when I get around to rewriting a lot more of it in jQuery.
Comment #3
m3avrck commentedOk, I changed changed this to position:absolute per Nate's suggestion.
While at the top is useful, it does indeed break basic browser functionality which can be very annoying/hard to get around. Note, the cause of this is the rendering issue in Firefox 2, which is fixed in Firefox 3 alpha -- this feature shall return when that day arrives :-)
Comment #4
(not verified) commented