Sha256: e6c9ae97b8038583d5a530df41f981a89ca65b994d43210ee241ca49564fa872

Contents?: true

Size: 1.14 KB

Versions: 418

Compression:

Stored size: 1.14 KB

Contents

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


// Responsive image
//
// Keep images from scaling beyond the width of their parents.

@mixin img-fluid {
  // Part 1: Set a maximum relative to the parent
  max-width: 100%;
  // Part 2: Override the height to auto, otherwise images will be stretched
  // when setting a width and height attribute on the img element.
  height: auto;
}


// Retina image
//
// Short retina mixin for setting background-image and -size.

// stylelint-disable indentation, media-query-list-comma-newline-after
@mixin img-retina($file-1x, $file-2x, $width-1x, $height-1x) {
  background-image: url($file-1x);

  // Autoprefixer takes care of adding -webkit-min-device-pixel-ratio and -o-min-device-pixel-ratio,
  // but doesn't convert dppx=>dpi.
  // There's no such thing as unprefixed min-device-pixel-ratio since it's nonstandard.
  // Compatibility info: https://caniuse.com/#feat=css-media-resolution
  @media only screen and (min-resolution: 192dpi), // IE9-11 don't support dppx
  only screen and (min-resolution: 2dppx) { // Standardized
    background-image: url($file-2x);
    background-size: $width-1x $height-1x;
  }
}

Version data entries

418 entries across 410 versions & 38 rubygems

Version Path
comfortable_mexican_sofa-2.0.9 app/assets/stylesheets/comfy/vendor/bootstrap/mixins/_image.scss
comfortable_mexican_sofa-2.0.8 app/assets/stylesheets/comfy/vendor/bootstrap/mixins/_image.scss
vv5-portfolio-0.1.4 _sass/bootstrap/bootstrap/mixins/_image.scss
vv5-portfolio-0.1.3 _sass/bootstrap/bootstrap/mixins/_image.scss
vv5-portfolio-0.1.2 _sass/bootstrap/bootstrap/mixins/_image.scss
vv5-portfolio-0.1.1 _sass/bootstrap/bootstrap/mixins/_image.scss
vv5-portfolio-0.1.0 _sass/bootstrap/bootstrap/mixins/_image.scss
bootstrap-4.0.0.beta3 assets/stylesheets/bootstrap/mixins/_image.scss
comfortable_mexican_sofa-2.0.7 app/assets/stylesheets/comfy/vendor/bootstrap/mixins/_image.scss
comfortable_mexican_sofa-2.0.6 app/assets/stylesheets/comfy/admin/cms/lib/bootstrap/mixins/_image.scss
card-1.93.6 mod/bootstrap/vendor/bootstrap/scss/mixins/_image.scss
card-1.93.5 mod/bootstrap/vendor/bootstrap/scss/mixins/_image.scss
jekyll-bootstrap-4.0.0.pre.beta.2.2 _sass/mixins/_image.scss
jekyll-bootstrap-4.0.0.pre.beta.2.1 _sass/mixins/_image.scss
card-1.93.4 mod/bootstrap/vendor/bootstrap/scss/mixins/_image.scss
card-1.93.3 mod/bootstrap/vendor/bootstrap/scss/mixins/_image.scss
bootstrap-4.0.0.beta2.1 assets/stylesheets/bootstrap/mixins/_image.scss
bootstrap-4.0.0.beta2 assets/stylesheets/bootstrap/mixins/_image.scss