MOON
Server: Apache
System: Linux server.netcommlabs.in 3.10.0-1160.83.1.el7.x86_64 #1 SMP Wed Jan 25 16:41:43 UTC 2023 x86_64
User: dermova (1051)
PHP: 5.4.45
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/dermova/www/india/wp-content/plugins/jetpack/scss/_utilities/mixins/_retina-background.scss
// ==========================================================================
// Retina background
// ==========================================================================

@mixin retina-background ($url, $file-type, $width: auto, $repeat: repeat, $ratio: 1.5, $suffix: "@2x") {
	background: url($url + "." + $file-type);
	background-repeat: $repeat;
	// Media queries from http://git.io/k-x0wA
	@media only screen and (-webkit-min-device-pixel-ratio: $ratio),
		only screen and (min--moz-device-pixel-ratio: $ratio),
		only screen and (-o-min-device-pixel-ratio: #{$ratio}/1),
		only screen and (min-resolution: #{round($ratio*96)}dpi),
		only screen and (min-resolution: #{$ratio}dppx) {
		background: url($url + $suffix + "." + $file-type);
		background-size: $width auto;
	}
}