Sha256: ebe93a6ddd044f75cbd5c4f3f4226441cf33fecdcde6a0b73e60a5d07402028c

Contents?: true

Size: 560 Bytes

Versions: 2

Compression:

Stored size: 560 Bytes

Contents

$legacy-support-for-ie: true !default;

//////////////////////////////
// Vertical Align of content with IE fallback
//
// Adapted from http://css-tricks.com/vertically-center-multi-lined-text/
//////////////////////////////
@mixin vertical-align {
  display: table-cell;
  vertical-align: middle;
  
  @if $legacy-support-for-ie {
    margin-top: inherit;
    *clear: expression(
    style.marginTop = "" + (offsetHeight < parentNode.offsetHeight ? parseInt((parentNode.offsetHeight - offsetHeight) / 2) + "px" : "0"),
    style.clear = "none", 0
    );
  }
}

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
toolkit-0.1.13 stylesheets/toolkit/_vertical-align.scss
toolkit-0.1.12 stylesheets/toolkit/_vertical-align.scss