Created
October 4, 2014 10:26
-
-
Save Undistraction/4cc8354dd6b475cc9518 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.4) | |
// Compass (v1.0.1) | |
// ---- | |
$list: one two three four five six; | |
$skip: false; | |
@each $item in $list { | |
@if $skip == false { | |
.#{$item}{ | |
color: red; | |
} | |
} @else { | |
$skip: false; | |
} | |
@if $item == two { | |
$skip: true !global; | |
} | |
} |
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
.one { | |
color: red; | |
} | |
.two { | |
color: red; | |
} | |
.four { | |
color: red; | |
} | |
.five { | |
color: red; | |
} | |
.six { | |
color: red; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment