Suggested fix to Css

3 messages Options
Embed this post
Permalink
Ben Bruckhart

Suggested fix to Css

Reply Threaded More More options
Print post
Permalink
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.)

Thanks,
Ben Bruckhart

(bingosabi on dev.java.net.)


---------------------------------------------------------------------
To unsubscribe, e-mail: [hidden email]
For additional commands, e-mail: [hidden email]

mraible

Re: Suggested fix to Css

Reply Threaded More More options
Print post
Permalink
Thanks Ben.

Can you please enter this as an issue in JIRA?

http://issues.appfuse.org/browse/APF

Thanks,

Matt

On Mar 2, 2009, at 9:38 AM, Ben Bruckhart 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.)
>
> Thanks,
> Ben Bruckhart
>
> (bingosabi on dev.java.net.)
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [hidden email]
> For additional commands, e-mail: [hidden email]
>


---------------------------------------------------------------------
To unsubscribe, e-mail: [hidden email]
For additional commands, e-mail: [hidden email]

David Whitehurst

Re: Suggested fix to Css

Reply Threaded More More options
Print post
Permalink
In reply to this post by Ben Bruckhart
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 <[hidden email]> 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.)

Thanks,
Ben Bruckhart

(bingosabi on dev.java.net.)

---------------------------------------------------------------------
To unsubscribe, e-mail: [hidden email]
For additional commands, e-mail: [hidden email]