Created
August 23, 2012 22:18
-
-
Save danillonunes/3442700 to your computer and use it in GitHub Desktop.
Property options test
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
@import "property/property.css.less"; | |
selector { | |
.awesomeness(); | |
} |
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
@disable-awesome-support: true; | |
@import "property/property.css.less"; | |
selector { | |
.awesomeness(); | |
} |
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
.awesomeness () when not (@disable-awesome-support) { | |
some-property: awesome; | |
} | |
.awesomeness () when (@disable-awesome-support) { | |
some-property: sans-awesome; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment