Sha256: 22d278fb4a8755600c163f5dde0bd51b9af0af478f3f3b534fa29ef44077e95e
Contents?: true
Size: 876 Bytes
Versions: 3
Compression:
Stored size: 876 Bytes
Contents
// Contains any classes used to hide or show elements, these will only be output when used // Hide text from visually-able users but keep it available for screen readers. %screen-reader-text { position: absolute !important; clip: rect(1px, 1px, 1px, 1px); clip: rect(1px 1px 1px 1px); // IE6, IE7 (deprecated syntax) padding:0 !important; border:0 !important; height: 1px !important; width: 1px !important; overflow: hidden; } // Hide elements from visual users but not from screen readers %visually-hidden { position: absolute !important; clip: rect(1px 1px 1px 1px); /* IE6, IE7 (deprecated syntax) */ clip: rect(1px, 1px, 1px, 1px); padding:0 !important; border:0 !important; height: 1px !important; width: 1px !important; overflow: hidden; } // Hide elements from 'all the people' %fully-hidden { display: none; visibility: hidden; }
Version data entries
3 entries across 3 versions & 1 rubygems