Skip to content

Instantly share code, notes, and snippets.

@starryeyez024
Created February 11, 2015 14:17
Show Gist options
  • Save starryeyez024/aa90c46953fc8bd0b255 to your computer and use it in GitHub Desktop.
Save starryeyez024/aa90c46953fc8bd0b255 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.11)
// Compass (v1.0.3)
// ----
@mixin svg-pro (
$filename,
$svg-class,
$no-svg-class: "lt-ie9") {
@if $svg-class {
background-image: image-url($filename + ".png");
.#{$svg-class} & {
background-image: image-url($filename + ".svg");
}
}
@else {
background-image: image-url($filename + ".svg");
.#{$no-svg-class} & {
background-image: image-url($filename + ".png");
}
}
}
.test {
@include svg-pro("logo", $svg-class: "svg");
}
.test {
background-image: url('/images/logo.png');
}
.svg .test {
background-image: url('/images/logo.svg');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment