Make WordPress Core

Opened 9 years ago

Closed 9 years ago

#33708 closed defect (bug) (duplicate)

Dashboard Menu is breaking

Reported by: hipihipiurra's profile hipihipiurra Owned by:
Milestone: Priority: normal
Severity: normal Version: 4.3
Component: General Keywords:
Focuses: Cc:

Description

What steps should be taken to consistently reproduce the problem?

  • The dashboard menu is weird. If you hover the link, the other links also unconfigures.

See below:
https://drive.google.com/file/d/0B0LdUlqwW_N8QU9FbEhoYlhrSXc/view?usp=sharing

Does the problem occur even when you deactivate all plugins and use the default theme?

  • Yes.

The solution

  • Add an atribute overflow:hidden to the class of the item list.
#adminmenu li.menu-top {
    border: none;
    min-height: 34px;
    position: relative;
    overflow: hidden;
}

Change History (3)

#1 @hipihipiurra
9 years ago

I made a mistake!
I just saw this list item has another list inside it, and it opens as dropdown menu on hover.
So, I think "overflow: hidden" is not cool as a solution.

I think is better to use display: inline-block and width: 100%:

#adminmenu li.menu-top {
    border: none;
    min-height: 34px;
    position: relative;
    display: inline-block;
    width: 100%;
}

Sorry for bad english.

#2 @swissspidy
9 years ago

#33707 was marked as a duplicate.

#3 @swissspidy
9 years ago

  • Milestone Awaiting Review deleted
  • Resolution set to duplicate
  • Status changed from new to closed

Hey there and welcome to trac!

Apparently it's a bug in Chrome. The whole thing is tracked in #33199

Note: See TracTickets for help on using tickets.