atom feed3 messages in net.java.dev.appfuse.devRe: [appfuse-dev] Suggested fix to Css
FromSent OnAttachments
Ben BruckhartMar 2, 2009 8:37 am 
Matt RaibleMar 2, 2009 8:59 am 
David WhitehurstMar 2, 2009 9:16 am 
Subject:Re: [appfuse-dev] Suggested fix to Css
From:David Whitehurst (dlwh@gmail.com)
Date:Mar 2, 2009 9:16:14 am
List:net.java.dev.appfuse.dev

Ben:

I wouldn't think that this would be a problem to change. I'll take a look at and make the change if needed.

Thanks,

David

On Mon, Mar 2, 2009 at 11:38 AM, Ben Bruckhart <be@ontomni.com> wrote:

On Safari 3.1.2 on Mac OS X 10.5.6.

The drop down menu disappears when attempting to scroll the mouse to an item in the list. The issue can be resolved by replacing the top value in the following id Selector in the file nav-horizontal.css

ul#primary-nav ul { position: absolute; display: none; left: 0px; /* Set 1px less than menu width */ top: 22px; }

changing the top calue to 21px; resolves the issue

like this:

ul#primary-nav ul { position: absolute; display: none; left: 0px; /* Set 1px less than menu width */ top: 21px; }

This prevents the cursor location from leaving the menu region which causes the drop down to disappear.

I requested Observer access on the project , to submit the issue in the proper way, but wanted to get this down before I spaced it. Not really a support request as I've already fixed the issue in my environment. (Happy to be developer member too, but I wasn't sure of the process there.)

(bingosabi on dev.java.net.)