Sha256: 618df52ca99154eddc8ba12f3d3adfc606cb6cabce8278797ba25c4563c05eab

Contents?: true

Size: 1.08 KB

Versions: 163

Compression:

Stored size: 1.08 KB

Contents

// Responsive image
//
// Keep images from scaling beyond the width of their parents.
@mixin img-responsive($display: block) {
  display: $display;
  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

163 entries across 120 versions & 10 rubygems

Version Path
card-mod-bootstrap-0.11.2 vendor/bootswatch/docs/3/bower_components/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_image.scss
card-mod-bootstrap-0.11.2 vendor/bootswatch/docs/3/bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_image.scss
jekyll-theme-glueckkanja-1.2.29 _sass/bootstrap/mixins/_image.scss
card-mod-bootstrap-0.11.1 vendor/bootswatch/docs/3/bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_image.scss
card-mod-bootstrap-0.11.1 vendor/bootswatch/docs/3/bower_components/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_image.scss
publify_core-9.2.0 app/assets/stylesheets/bootstrap/mixins/_image.scss
jekyll-theme-glueckkanja-1.2.28 _sass/bootstrap/mixins/_image.scss
twbs_sass_rails-10.2.0 vendor/assets/stylesheets/twbs/bootstrap/mixins/_image.scss
jekyll-theme-glueckkanja-1.2.27 _sass/bootstrap/mixins/_image.scss
jekyll-theme-glueckkanja-1.2.26 _sass/bootstrap/mixins/_image.scss
jekyll-theme-glueckkanja-1.2.25 _sass/bootstrap/mixins/_image.scss
jekyll-theme-glueckkanja-1.2.24 _sass/bootstrap/mixins/_image.scss
jekyll-theme-glueckkanja-1.2.23 _sass/bootstrap/mixins/_image.scss
jekyll-theme-glueckkanja-1.2.22 _sass/bootstrap/mixins/_image.scss
jekyll-theme-glueckkanja-1.2.21 _sass/bootstrap/mixins/_image.scss
jekyll-theme-glueckkanja-1.2.20 _sass/bootstrap/mixins/_image.scss
jekyll-theme-glueckkanja-1.2.19 _sass/bootstrap/mixins/_image.scss
jekyll-theme-glueckkanja-1.2.18 _sass/bootstrap/mixins/_image.scss
jekyll-theme-glueckkanja-1.2.17 _sass/bootstrap/mixins/_image.scss
jekyll-theme-glueckkanja-1.2.16 _sass/bootstrap/mixins/_image.scss