image.less 1.0 KB

12345678910111213141516171819202122232425
  1. // Image Mixins
  2. // - Responsive image
  3. // - Retina image
  4. // Responsive image
  5. //
  6. // Keep images from scaling beyond the width of their parents.
  7. .img-responsive(@display: block) {
  8. display: @display;
  9. max-width: 100%; // Part 1: Set a maximum relative to the parent
  10. height: auto; // Part 2: Scale the height according to the width, otherwise you get stretching
  11. }
  12. // Retina image
  13. //
  14. // Short retina mixin for setting background-image and -size. Note that the
  15. // spelling of `min--moz-device-pixel-ratio` is intentional.
  16. .img-retina(@file-1x; @file-2x; @width-1x; @height-1x) {
  17. background-image: url("@{file-1x}");
  18. @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) {
  19. background-image: url("@{file-2x}");
  20. background-size: @width-1x @height-1x;
  21. }
  22. }