OSDN Git Service

Merge pull request #41 from Bytom/dev
[bytom/vapor.git] / tools / side_chain_tool / web / node_modules / bootstrap / scss / mixins / _image.scss
1 // Image Mixins
2 // - Responsive image
3 // - Retina image
4
5
6 // Responsive image
7 //
8 // Keep images from scaling beyond the width of their parents.
9
10 @mixin img-fluid {
11   // Part 1: Set a maximum relative to the parent
12   max-width: 100%;
13   // Part 2: Override the height to auto, otherwise images will be stretched
14   // when setting a width and height attribute on the img element.
15   height: auto;
16 }
17
18
19 // Retina image
20 //
21 // Short retina mixin for setting background-image and -size.
22
23 // stylelint-disable indentation, media-query-list-comma-newline-after
24 @mixin img-retina($file-1x, $file-2x, $width-1x, $height-1x) {
25   background-image: url($file-1x);
26
27   // Autoprefixer takes care of adding -webkit-min-device-pixel-ratio and -o-min-device-pixel-ratio,
28   // but doesn't convert dppx=>dpi.
29   // There's no such thing as unprefixed min-device-pixel-ratio since it's nonstandard.
30   // Compatibility info: https://caniuse.com/#feat=css-media-resolution
31   @media only screen and (min-resolution: 192dpi), // IE9-11 don't support dppx
32   only screen and (min-resolution: 2dppx) { // Standardized
33     background-image: url($file-2x);
34     background-size: $width-1x $height-1x;
35   }
36 }