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.18.1 vendor/bootswatch/docs/3/bower_components/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_image.scss
card-mod-bootstrap-0.18.1 vendor/bootswatch/docs/3/bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_image.scss
entreprise7pro-bootstrap-sass-3.4.7 assets/stylesheets/bootstrap/mixins/_image.scss
entreprise7pro-bootstrap-sass-3.4.6 assets/stylesheets/bootstrap/mixins/_image.scss
card-mod-bootstrap-0.18.0 vendor/bootswatch/docs/3/bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_image.scss
card-mod-bootstrap-0.18.0 vendor/bootswatch/docs/3/bower_components/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_image.scss
publify_core-10.0.2 app/assets/stylesheets/bootstrap/mixins/_image.scss
card-mod-bootstrap-0.17.0 vendor/bootswatch/docs/3/bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_image.scss
card-mod-bootstrap-0.17.0 vendor/bootswatch/docs/3/bower_components/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_image.scss
HornsAndHooves-publify_core-10.5.0 app/assets/stylesheets/bootstrap/mixins/_image.scss
HornsAndHooves-publify_core-10.4.0 app/assets/stylesheets/bootstrap/mixins/_image.scss
HornsAndHooves-publify_core-10.3.0 app/assets/stylesheets/bootstrap/mixins/_image.scss
HornsAndHooves-publify_core-10.2.0 app/assets/stylesheets/bootstrap/mixins/_image.scss
card-mod-bootstrap-0.16.0 vendor/bootswatch/docs/3/bower_components/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_image.scss
card-mod-bootstrap-0.16.0 vendor/bootswatch/docs/3/bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_image.scss
publify_core-10.0.1 app/assets/stylesheets/bootstrap/mixins/_image.scss
publify_core-10.0.0 app/assets/stylesheets/bootstrap/mixins/_image.scss
card-mod-bootstrap-0.15.6 vendor/bootswatch/docs/3/bower_components/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_image.scss
card-mod-bootstrap-0.15.6 vendor/bootswatch/docs/3/bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/mixins/_image.scss
card-mod-bootstrap-0.15.5 vendor/bootswatch/docs/3/bower_components/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_image.scss