Skip to content

Instantly share code, notes, and snippets.

@Undistraction
Created October 4, 2014 10:26
Show Gist options
  • Save Undistraction/4cc8354dd6b475cc9518 to your computer and use it in GitHub Desktop.
Save Undistraction/4cc8354dd6b475cc9518 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// 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;
}
}
.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