Skip to content

Commit

Permalink
Fixed issue #06572: On chrome browser submenu's disappear
Browse files Browse the repository at this point in the history
Dev Tighten up dropdown lists
  • Loading branch information
tpartner committed Oct 9, 2012
1 parent a362068 commit 444f35a
Showing 1 changed file with 19 additions and 2 deletions.
21 changes: 19 additions & 2 deletions admin/styles/default/superfish.css
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,15 @@
.sf-menu li:hover ul,
.sf-menu li.sfHover ul {
left: 0;
top: 44px; /* match top ul list item height */
top: 43px; /* match top ul list item height */
z-index: 99;
}

.sf-menu.sf-js-enabled li:hover ul,
.sf-menu.sf-js-enabled li.sfHover ul {
top: 44px;
}

This comment has been minimized.

Copy link
@Shnoulle

Shnoulle Nov 21, 2012

Collaborator

This part break sub sub menu for multi language survey : think it's not needed, and if needed need

  .sf-menu.sf-js-enabled li li:hover ul,
  .sf-menu.sf-js-enabled li.sfHover ul {
      top:          0;
  }

ul.sf-menu li:hover li ul,
ul.sf-menu li.sfHover li ul {
top: -999em;
Expand All @@ -59,11 +65,22 @@ ul.sf-menu li li li.sfHover ul {
float: left;
margin-bottom: 1em;
}
.sf-menu a {

.menubar-main ul.sf-menu {
height: auto;
margin-bottom: 0;
}

.sf-menu a {
padding: 0.1em 1em;
text-decoration:none;
}

.menubar-main .sf-menu a {
padding: 1px 1em 0 1em;
height: 42px;
}

.sf-menu a, .sf-menu a:visited { /* visited pseudo selector so IE6 applies text colour*/
color: #13a;
}
Expand Down

0 comments on commit 444f35a

Please sign in to comment.