Skip to content

Instantly share code, notes, and snippets.

@Snugug
Created April 30, 2015 17:28
Show Gist options
  • Select an option

  • Save Snugug/ca61760f96d1f1b07d4a to your computer and use it in GitHub Desktop.

Select an option

Save Snugug/ca61760f96d1f1b07d4a to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.13)
// Compass (v1.0.3)
// ----
.loader {
width: 100%;
// Loader Fallback
&--fallback {
// If SMIL is available
.smil & {
display: none;
}
// If SMIL is not available
.no-smil &,
.no-svg & {
display: block;
}
}
&--svg {
// If SMIL or SVG are not available
.no-svg &,
.no-smil & {
display: none;
}
}
}
.loader {
width: 100%;
}
.smil .loader--fallback {
display: none;
}
.no-smil .loader--fallback, .no-svg .loader--fallback {
display: block;
}
.no-svg .loader--svg, .no-smil .loader--svg {
display: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment