Sha256: 644d4e16181286c689d65a38112a3f8319c5fb251772987bbc36779b42437d82

Contents?: true

Size: 477 Bytes

Versions: 28

Compression:

Stored size: 477 Bytes

Contents

@charset "UTF-8";

/// Hides the text in an element, commonly used to show an image instead. Some
/// elements will need block-level styles applied.
///
/// @link https://goo.gl/EvLRIu
///
/// @example scss
///   .element {
///     @include hide-text;
///   }
///
///   // CSS Output
///   .element {
///     overflow: hidden;
///     text-indent: 101%;
///     white-space: nowrap;
///   }

@mixin hide-text {
  overflow: hidden;
  text-indent: 101%;
  white-space: nowrap;
}

Version data entries

28 entries across 28 versions & 5 rubygems

Version Path
baseline-scss-0.5.0 src/vendors/bourbon/library/_hide-text.scss
baseline-scss-0.4.4 src/vendors/bourbon/library/_hide-text.scss
baseline-scss-0.4.3 src/vendors/bourbon/library/_hide-text.scss
baseline-scss-0.4.2 src/vendors/bourbon/library/_hide-text.scss
baseline-scss-0.4.1 src/vendors/bourbon/library/_hide-text.scss
baseline-scss-0.4.0 src/vendors/bourbon/library/_hide-text.scss
baseline-scss-0.3.3 src/vendors/bourbon/library/_hide-text.scss
baseline-scss-0.3.2 src/vendors/bourbon/library/_hide-text.scss
baseline-scss-0.3.1 src/vendors/bourbon/library/_hide-text.scss
baseline-scss-0.3.0 src/vendors/bourbon/library/_hide-text.scss
bourbon-7.3.0 core/bourbon/library/_hide-text.scss
bourbon-7.2.0 core/bourbon/library/_hide-text.scss
bourbon-7.1.0 core/bourbon/library/_hide-text.scss
geekspace-3.2.0 _sass/bourbon/bourbon/library/_hide-text.scss
geekspace-3.1.2 _sass/bourbon/bourbon/library/_hide-text.scss
geekspace-3.1.1 _sass/bourbon/bourbon/library/_hide-text.scss
bourbon-7.0.0 core/bourbon/library/_hide-text.scss
bourbon-6.0.0 core/bourbon/library/_hide-text.scss
bourbon-5.1.0 core/bourbon/library/_hide-text.scss
bourbon-5.0.1 core/bourbon/library/_hide-text.scss