Created
January 3, 2013 22:19
-
-
Save dmackerman/4447923 to your computer and use it in GitHub Desktop.
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
| @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