Sha256: e03fbc6a65bb4985c7ee7c2d18632ddc897c05ac844f0d3f2164bcdede85b0c5

Contents?: true

Size: 896 Bytes

Versions: 2

Compression:

Stored size: 896 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

2 entries across 2 versions & 1 rubygems

Version Path
minable-0.0.2 app/assets/stylesheets/helpers/classes/_display-classes.scss
minable-0.0.1 app/assets/stylesheets/helpers/classes/_display-classes.scss