Created
February 11, 2013 12:12
-
-
Save dannykeane/4754113 to your computer and use it in GitHub Desktop.
Less CSS Retina Mixin
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#element{ | |
background-image: url('/images/sprite.png'); | |
background-repeat: no-repeat; | |
background-position: -3px 0; | |
} | |
@media print, screen, | |
(-webkit-min-device-pixel-ratio: 1.25), | |
(~`"-o-min-device-pixel-ratio: 1.25/1"`), | |
(min--moz-device-pixel-ratio: 1.25), | |
(-moz-min-device-pixel-ratio: 1.25), | |
(-ms-min-device-pixel-ratio: 1.25), | |
(min-device-pixel-ratio: 1.25), | |
(min-resolution: 120dpi), | |
(min-resolution: 1.25dppx) { | |
#element{ | |
background-size: 100px auto; | |
background-image: url('/images/[email protected]'); | |
background-position: -20px 0; | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.retina-image(@file, @type, @repeat, @width, @height, @posx, @posy) { | |
background-image: url('@{file}.@{type}'); | |
background-repeat: @repeat; | |
background-position: @posx @posy; | |
@media print, screen, | |
(-webkit-min-device-pixel-ratio: 1.25), | |
(~`"-o-min-device-pixel-ratio: 1.25/1"`), | |
(min--moz-device-pixel-ratio: 1.25), | |
(-moz-min-device-pixel-ratio: 1.25), | |
(-ms-min-device-pixel-ratio: 1.25), | |
(min-device-pixel-ratio: 1.25), | |
(min-resolution: 120dpi), | |
(min-resolution: 1.25dppx) { | |
background-size: @width @height; | |
background-image: url('@{file}@2x.@{type}'); | |
background-position: @posx * 2 @posy * 2; | |
} | |
} | |
//Example | |
#element{ | |
.retina-image('/images/sprite','png', no-repeat, 100px, auto, -10px, 0); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I don't think you really want to be mixing
print, screen,
like that, do you? Every comma is an OR condition! Maybe(print, screen) and ( (...), (...), ... )
, if the syntax supports that....?