Should be a quick fix. I suspect that there's a missing class or an orphaned js file.

Support from Acquia helps fund testing for Drupal Acquia logo

Comments

hswong3i’s picture

Most likely I can confirm it will affect form with sticky table header, including content admin page and people admin page, too.

P.S. I try with disable/enable fences but the display still goes creazy; also try with disable/enable jquery_update and nothing improved.

content admin page
people admin page

drewmelck’s picture

Zarabadoo’s picture

The obsuring of the sticky header by navbar is an issue with navbar module: https://drupal.org/node/1937754

When using the default Drupal toolbar, the sticky header works perfectly.

Zarabadoo’s picture

Status: Needs work » Postponed
Stagger Lee’s picture

I just updated Ember and got this problem. Temporary fix:

Ember folder => styles => style.css, line 1852, put:

position:relative !important;

Stagger Lee’s picture

I just tested with latest dev style.css, they say it is fixed. But i have problem with better module list if i use clear:both.
Use also this style.css for problem with 2 select arrows.

I will skip this with clear:both and use position:relative only for now.

AaronBauman’s picture

Status: Postponed » Active
FileSize
84.52 KB

I'm not using navbar, I am using the default Drupal toolbar, and I experience this issue in webkit (see attached).

re #5: there is no "styles" directory, and css/style.css is less than 1800 lines long, so your suggestion does not make sense.
Can you provide some more context or a proper patch?

Stagger Lee’s picture

I have style.css with more than 3600 lines right now. Checked with Ember download RAR also. Maybe you are looking in your front page theme.

But, i dont use this Admin theme. Makes much small problems. I use Shiny, never made any problems.

AaronBauman’s picture

Sorry, my mistake. I was looking at 1.x

Your suggestion does work against latest dev (with fuzz) to fix the problem of arbitrarily placed sticky header.
But, it causes the sticky header to not be sticky at all.
In other words, the header just scrolls right off the top of the screen, instead of sticking.

I'll leave this issue on "active",
but here's a diff to at least get the arbitrarily placed headers out of the content well:

Index: style.css
===================================================================
--- style.css	(revision 2073)
+++ style.css	(working copy)
@@ -1845,6 +1845,7 @@
 }
 table.sticky-header {
   z-index: 2;
+  position:relative !important;
 }
 
 #system-modules label {
WebSinPat’s picture

I'm running into this problem with ember and admin_menu on the permissions page, firefox and chrome.
My header is not in the middle of the page. it goes to the top correctly but some kind of ember header dark box covers over the header texts making it impossible to read.

rpayanm’s picture

Issue summary: View changes
Status: Active » Needs review

The version 7.x-2.0-alpha2 fix this problem :)

rpayanm’s picture

Status: Needs review » Reviewed & tested by the community
saltednut’s picture

Status: Reviewed & tested by the community » Postponed (maintainer needs more info)

Does this still need to be applied? I can't reproduce in dev.

saltednut’s picture

Assigned: Zarabadoo » Unassigned
Bcwald’s picture

Status: Postponed (maintainer needs more info) » Closed (cannot reproduce)