Sha256: 11e4a737146939fe6c78e1634e2aaacaf6555340fceabfad6c0c90f0501386f4

Contents?: true

Size: 1.25 KB

Versions: 78

Compression:

Stored size: 1.25 KB

Contents

// Image Mixins
// - Responsive image
// - Retina image


// Responsive image
//
// Keep images from scaling beyond the width of their parents.
@mixin img-responsive($display: block) {
  display: $display;
  width: 100% \9; // Force IE10 and below to size SVG images correctly
  max-width: 100%; // Part 1: Set a maximum relative to the parent
  height: auto; // Part 2: Scale the height according to the width, otherwise you get stretching
}


// Retina image
//
// Short retina mixin for setting background-image and -size. Note that the
// spelling of `min--moz-device-pixel-ratio` is intentional.
@mixin img-retina($file-1x, $file-2x, $width-1x, $height-1x) {
  background-image: url(if($bootstrap-sass-asset-helper, twbs-image-path("#{$file-1x}"), "#{$file-1x}"));

  @media
  only screen and (-webkit-min-device-pixel-ratio: 2),
  only screen and (   min--moz-device-pixel-ratio: 2),
  only screen and (     -o-min-device-pixel-ratio: 2/1),
  only screen and (        min-device-pixel-ratio: 2),
  only screen and (                min-resolution: 192dpi),
  only screen and (                min-resolution: 2dppx) {
    background-image: url(if($bootstrap-sass-asset-helper, twbs-image-path("#{$file-2x}"), "#{$file-2x}"));
    background-size: $width-1x $height-1x;
  }
}

Version data entries

78 entries across 78 versions & 10 rubygems

Version Path
lanes-0.0.5 client/styles/vendor/bootstrap/old/mixins/_image.scss
lanes-0.0.3 client/stylesheets/vendor/bootstrap/mixins/_image.scss
lanes-0.0.2 client/stylesheets/vendor/bootstrap/mixins/_image.scss
lanes-0.0.1 client/stylesheets/vendor/bootstrap/mixins/_image.scss
assets-rails-0.1.0 vendor/assets/stylesheets/bootstrap/v3.2.0/mixins/_image.scss
bootstrap-sass-backport-3.2.0.2 assets/stylesheets/bootstrap/mixins/_image.scss
adhoq-0.0.3 app/assets/stylesheets/adhoq/bootstrap/mixins/_image.scss
adhoq-0.0.2 app/assets/stylesheets/adhoq/bootstrap/mixins/_image.scss
twbs_sass_rails-0.9.2 vendor/assets/stylesheets/twbs/bootstrap/mixins/_image.scss
twbs_sass_rails-0.9.1 vendor/assets/stylesheets/twbs/bootstrap/mixins/_image.scss
twbs_sass_rails-0.9.0 vendor/assets/stylesheets/twbs/bootstrap/mixins/_image.scss
genus-0.0.2 app/assets/stylesheets/bootstrap/mixins/_image.scss
genus-0.0.1 app/assets/stylesheets/bootstrap/mixins/_image.scss
twbs_sass_rails-0.8.2 vendor/assets/stylesheets/twbs/bootstrap/mixins/_image.scss
twbs_sass_rails-0.8.1 vendor/assets/stylesheets/twbs/bootstrap/mixins/_image.scss
twbs_sass_rails-0.7.2 vendor/assets/stylesheets/twbs/bootstrap/mixins/_image.scss
twbs_sass_rails-0.7.1 vendor/assets/stylesheets/twbs/bootstrap/mixins/_image.scss
twbs_sass_rails-0.7.0 vendor/assets/stylesheets/twbs/bootstrap/mixins/_image.scss