Although I don't typically give the average client a site with admin_menu, it would be nice for the theme to work with it during the site building process or for advanced users or those who prefer working with admin_menu.

Comments

stijndm’s picture

Patches are welcome.

siilak’s picture

Admin Menu style z-index is 999;

just add in your custom css (or fixed in styles.css)

.topbar {
  z-index: 300;
}
hs@henrikstrindberg.se’s picture

Thank's but it's already there in styles.css in 7.x-1.0-alpha2 line 15:

.topbar { z-index: 300; }

and in styles.css in 7.x-1.x-dev:

.topbar {
  z-index: 300;
  margin: 0 10px;
}
dinhtrung’s picture

When enable admin menu, we could use this:

/** Support for admin menu **/
.admin-menu .topbar { margin-top: 26px; position: absolute; }
Wolfgang Reszel’s picture

For v2.x I modified the script.js to respect the admin menu.

https://drupal.org/node/1978428