Sha256: a24ba1fb0b657bd9fa8a0dda0a50d258730c2f690887d4120827d38b56ce2d63

Contents?: true

Size: 1.59 KB

Versions: 3

Compression:

Stored size: 1.59 KB

Contents

@import "compass/utilities/text/replacement";
@import "compass/utilities/general/clearfix";

//
// Non-semantic helper classes
// It's better to include these mixins in your own styles
//

@mixin html5-boilerplate-helpers {
  .ir { @include image-replacement; }

  .hidden { @include hidden; }

  .visuallyhidden { @include visually-hidden; }

  .clearfix { @include pie-clearfix; }
}

// Almost the same as compass replace-text
// but adding direction: ltr
@mixin image-replacement($img: none, $x: 50%, $y: 50%) {
  @include hide-text;
  direction: ltr;
  background-repeat: no-repeat;
  @if $img != none {
    background-image: image-url($img);
    background-position: $x $y;
  }
}

@mixin sized-image-replacement($img, $x: 50%, $y: 50%) {
  @include image-replacement($img, $x, $y);
  width: image-width($img);
  height: image-height($img);
}

// Hide for both screenreaders and browsers
// css-discuss.incutio.com/wiki/Screenreader_Visibility
@mixin hidden {
  display:none;
  visibility: hidden;
}

// Hide only visually, but have it available for screenreaders: by Jon Neal
// www.webaim.org/techniques/css/invisiblecontent/  &  j.mp/visuallyhidden
@mixin visually-hidden {
  border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px;
}

// Hide visually and from screenreaders, but maintain layout
@mixin invisible { visibility: hidden; }

// The Magnificent CLEARFIX << j.mp/phayesclearfix
@mixin magnificent-clearfix {
  @warn "The 'magnificent-clearfix' mixin has been deprecated. Use 'pie-clearfix' in compass core instead.";
  @include pie-clearfix;
}

Version data entries

3 entries across 3 versions & 2 rubygems

Version Path
playmo-0.0.6 stylesheets/playmo-rails/_helpers.scss
playmo-0.0.5 stylesheets/playmo-rails/_helpers.scss
html5-boilerplate-0.3.0 stylesheets/html5-boilerplate/_helpers.scss