Index: modules/system/system.css =================================================================== RCS file: /cvs/drupal/drupal/modules/system/system.css,v retrieving revision 1.55 diff -u -p -r1.55 system.css --- modules/system/system.css 20 Jul 2009 18:51:34 -0000 1.55 +++ modules/system/system.css 30 Jul 2009 18:36:59 -0000 @@ -564,3 +564,20 @@ div.password-suggestions ul { div.password-confirm { visibility: hidden; } +/** + * Hide elements from all users. + * + * To be used for elements that should not be displayed to any users. + */ +.element-hidden { + display: none; +} +/** + * Hide elements visually, but keep them available for screen-readers. + * + * Used for elements that provide textual representations of visual concepts to screen-reader users. + */ +.element-invisible { + height: 0; + overflow: hidden; +}