Skip to content

Instantly share code, notes, and snippets.

@dmackerman
Created January 3, 2013 22:19
Show Gist options
  • Select an option

  • Save dmackerman/4447923 to your computer and use it in GitHub Desktop.

Select an option

Save dmackerman/4447923 to your computer and use it in GitHub Desktop.
@each $option in 1, 2, 3, 4, 5 {
.email-preference-#{$option} {
background-position: 0px 1px;
background-repeat: no-repeat;
padding-left: 20px;
@if ($option == 1) { }
@else if ($option == 2) { background-image: url(../images/icons/exclamation.png); }
@else if ($option == 3) { background-image: url(../images/icons/flag_yellow.png); }
@else if ($option == 4) { background-image: url(../images/icons/exclamation.png); }
@else if ($option == 5) { background-image: url(../images/icons/flag_yellow.png); }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment