First issue:
admin-menu created margin-top for the body tag.
So, table sticky headers go under the admin-menu when scrolling a long page.

Second issue:
In some tables with checkboxes, the sticky header, goes under the checkboxes.
(For example see ?q=admin/user/permissions page)

The solution:

table.sticky-header, table.sticky-enabled thead {
  margin-top: 25px !important;
}
table.sticky-header {
  z-index: 10;
}

Comments

hejazee’s picture

A better patch

body.admin-menu table.sticky-header, table.sticky-enabled thead {
  margin-top: 25px !important;
}
table.sticky-header {
  z-index: 10;
}
Steven Jones’s picture

Status: Needs review » Closed (won't fix)

Eldir isn't maintained as a project in it's own right, and it looks like these issues should be with admin menu anyway.

hejazee’s picture

But the theme should be compatible with popular modules.
In a project like aegir, its nice to fix this issues because user do not install the admin_menu manually.
People expect the project to look good, out of the box.

hejazee’s picture

Issue summary: View changes

Add some extra informations