Over in #718922: system class: .element-invisible does not work with VoiceOver on OS X Snow Leopard and #766444: Add !important to CSS attributes of .element-invisible in system-behavior.css, we've found some issues with the original D7 implementation of the element-invisible class.

The most recent patch in #718922 changes:

.element-invisible {
  height: 0;
  overflow: hidden;
  position: absolute;
}

to:

.element-invisible {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
}

Zen should use the same.

Comments

JohnAlbin’s picture

Status: Active » Fixed

Fixed.

TravisCarden’s picture

For the sake of anyone who, like me, is patching an existing, pre-2.0 Zen sub-theme: you'll find this rule at the end of your css/pages.css file.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.