Opened 16 years ago
Closed 16 years ago
#623 closed defect (bug) (fixed)
admin bar dropdown menu is behaving erraticly (it's back)
Reported by: | burtadsit | Owned by: | |
---|---|---|---|
Milestone: | Priority: | major | |
Severity: | Version: | ||
Component: | Keywords: | ||
Cc: |
Description
I thought the 1px gap thing was fixed but guess it's not. Still happening here on the new site. This is driving people nuts. I'll look at this today but css just isn't my strong point. I have just about zero confidence in my ability to solve this one.
Change History (4)
Note: See
TracTickets for help on using
tickets.
Here's a fix...
In admin-bar.css, at line 55, under...
#wp-admin-bar ul { /* all lists */
REMOVE...
height: 30px !important;
ALTERNATIVELY REPLACE WITH... (might be needed to keep ie6 happy?)
height: auto !important;
The problem with setting the UL height to a set about is obvious once you see it... Moving the mouse beyond the 30px point confuses the CSS, because the LI's an A's are outside the bounding area of the UL. Move the mouse 31px down, and the suckerfish JS fights the CSS to eventually say "remove sfhover" and the menu disappears.