Created
April 30, 2015 17:28
-
-
Save Snugug/ca61760f96d1f1b07d4a to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains hidden or 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
| // ---- | |
| // 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; | |
| } | |
| } | |
| } |
This file contains hidden or 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
| .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