2015-03-28 07:06:22 -04:00
|
|
|
// Image Mixins
|
|
|
|
// - Responsive image
|
|
|
|
// - Retina image
|
|
|
|
|
|
|
|
|
|
|
|
// Responsive image
|
|
|
|
//
|
|
|
|
// Keep images from scaling beyond the width of their parents.
|
|
|
|
|
2016-10-09 17:14:39 -04:00
|
|
|
@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;
|
2015-03-28 07:06:22 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-03-10 03:05:57 -04:00
|
|
|
// Retina image
|
|
|
|
//
|
2014-12-22 19:32:25 -05:00
|
|
|
// Short retina mixin for setting background-image and -size.
|
2014-12-02 17:02:35 -05:00
|
|
|
|
2017-10-02 23:34:56 -04:00
|
|
|
// stylelint-disable indentation, media-query-list-comma-newline-after
|
2014-12-02 17:02:35 -05:00
|
|
|
@mixin img-retina($file-1x, $file-2x, $width-1x, $height-1x) {
|
2015-08-20 05:35:00 -04:00
|
|
|
background-image: url($file-1x);
|
2014-03-10 02:18:48 -04:00
|
|
|
|
2015-10-29 20:33:21 -04:00
|
|
|
// 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.
|
2017-09-26 08:24:14 -04:00
|
|
|
// Compatibility info: https://caniuse.com/#feat=css-media-resolution
|
2017-10-02 23:34:56 -04:00
|
|
|
@media only screen and (min-resolution: 192dpi), // IE9-11 don't support dppx
|
2015-10-29 20:33:21 -04:00
|
|
|
only screen and (min-resolution: 2dppx) { // Standardized
|
2015-08-20 05:35:00 -04:00
|
|
|
background-image: url($file-2x);
|
2014-12-02 17:02:35 -05:00
|
|
|
background-size: $width-1x $height-1x;
|
2014-03-10 02:18:48 -04:00
|
|
|
}
|
|
|
|
}
|