--- modules/system/system-behavior.css Mon Jun 21 12:32:47 2010 +++ modules/system/system-behavior.css Mon Jun 21 12:32:59 2010 @@ -302,10 +302,11 @@ * the site where visual display is undesirable. Information provided in this * manner should be kept concise, to avoid unnecessary burden on the user. Must * not be used for focusable elements (such as links and form elements) as this - * causes issues for keyboard only or voice recognition users. + * causes issues for keyboard only or voice recognition users. "!important" is + * used to prevent unintentional overrides. */ .element-invisible { - height: 0; - overflow: hidden; - position: absolute; + position: absolute !important; + clip: rect(0 0 0 0); + clip: rect(0, 0, 0, 0); }