Index: modules/system/system.css =================================================================== RCS file: /cvs/drupal/drupal/modules/system/system.css,v retrieving revision 1.56 diff -u -p -r1.56 system.css --- modules/system/system.css 31 Jul 2009 11:20:42 -0000 1.56 +++ modules/system/system.css 3 Aug 2009 05:20:40 -0000 @@ -564,3 +564,27 @@ div.password-suggestions ul { div.password-confirm { visibility: hidden; } + +/** + * Hide elements from all users. + * + * Used for elements that should not be immediately displayed to any user. An + * example may be a collapsable fieldset, that will be expanded by an action + * from a user. The effect of this class can be toggled with the JQuery show() + * and hide() functions. + */ +.element-hidden { + display: none; +} + +/** + * Hide elements visually, but keep them available for screen-readers. + * + * Used for information required for screen-reader users to understand and use + * the site where visual display is undesirable. Information provided in this + * manner should be kept concise, to avoid unnecessary burden on the user. + */ +.element-invisible { + height: 0; + overflow: hidden; +}